From 66e5d663009ccc478fb35ece45b4d818d3ab0e03 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Mon, 30 Sep 2024 08:57:13 -0700 Subject: [PATCH] Another round of binning fixes (#274) * Bin more aggressively if a point doesn't meet the pnpoly test * Don't clip the points if we are binning * Fix output of features added to the bin after its closure * Update tests * Update version and changelog --- CHANGELOG.md | 4 + clip.cpp | 77 +++++++------ tests/pbf/0-0-0-pop-0-0-0.pbf.out.json | 122 ++++++++++---------- tests/pbf/0-0-0-pop-1-1-0.pbf.out.json | 150 ++++++++++++++----------- tests/pbf/0-0-0-pop-2-0-1.pbf.out.json | 62 +++++----- tests/pbf/bin-11-327-791.pbf.out.json | 36 +++--- version.hpp | 2 +- 7 files changed, 241 insertions(+), 212 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ed17c15..9304689f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.65.5 + +* More aggressive binning when points fail the point-in-polygon test + # 2.62.4 * Fix accumulation of count and mean in overzoom diff --git a/clip.cpp b/clip.cpp index b9343cb4..204800bd 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1509,7 +1509,8 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & std::string const &accumulate_numeric, std::set keep, std::set exclude, - std::vector exclude_prefix) { + std::vector exclude_prefix, + int buffer) { std::vector events; // Index bins @@ -1578,49 +1579,38 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & } else if (e.kind == index_event::CHECK) { auto const &feature = features.layers[e.layer].features[e.feature]; + // if we can't find a real match, + // assign points to the most nearby bin + ssize_t which_outfeature = outfeatures.size() - 1; + for (auto const &a : active) { auto const &bin = bins[a.layer].features[a.feature]; if (bbox_intersects(e.xmin, e.ymin, e.xmax, e.ymax, a.xmin, a.ymin, a.xmax, a.ymax)) { if (pnpoly_mp(bin.geometry, feature.geometry[0].x, feature.geometry[0].y)) { - tile_feature outfeature; - for (auto const &g : feature.geometry) { - outfeature.geom.emplace_back(g.op, g.x, g.y); - } - outfeature.t = feature.type; - outfeature.has_id = feature.has_id; - outfeature.id = feature.id; - outfeature.tags = feature.tags; - outfeature.layer = &features.layers[e.layer]; - outfeature.seq = e.feature; - outfeatures[a.outfeature].push_back(std::move(outfeature)); - + which_outfeature = a.outfeature; break; } } } + + if (which_outfeature >= 0) { + tile_feature outfeature; + for (auto const &g : feature.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); + } + outfeature.t = feature.type; + outfeature.has_id = feature.has_id; + outfeature.id = feature.id; + outfeature.tags = feature.tags; + outfeature.layer = &features.layers[e.layer]; + outfeature.seq = e.feature; + outfeatures[which_outfeature].push_back(std::move(outfeature)); + } } else /* EXIT */ { auto const &found = active.find({e.layer, e.feature}); if (found != active.end()) { - if (outfeatures[found->outfeature].size() > 1) { - feature_out(outfeatures[found->outfeature], outlayer, - keep, exclude, exclude_prefix, attribute_accum, - tile_stringpool, accumulate_numeric); - mvt_feature &nfeature = outlayer.features.back(); - mvt_value val; - val.type = mvt_uint; - val.numeric_value.uint_value = outfeatures[found->outfeature].size() - 1; - - std::string attrname; - if (accumulate_numeric.size() == 0) { - attrname = "tippecanoe:count"; - } else { - attrname = accumulate_numeric + ":count"; - } - outlayer.tag(nfeature, attrname, val); - } - active.erase(found); } else { fprintf(stderr, "event mismatch: can't happen\n"); @@ -1629,6 +1619,26 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & } } + for (size_t i = 0; i < outfeatures.size(); i++) { + if (outfeatures[i].size() > 1) { + feature_out(outfeatures[i], outlayer, + keep, exclude, exclude_prefix, attribute_accum, + tile_stringpool, accumulate_numeric); + mvt_feature &nfeature = outlayer.features.back(); + mvt_value val; + val.type = mvt_uint; + val.numeric_value.uint_value = outfeatures[i].size() - 1; + + std::string attrname; + if (accumulate_numeric.size() == 0) { + attrname = "tippecanoe:count"; + } else { + attrname = accumulate_numeric + ":count"; + } + outlayer.tag(nfeature, attrname, val); + } + } + mvt_tile ret; ret.layers.push_back(outlayer); return ret; @@ -1714,7 +1724,8 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int g.y -= ny * outtilesize; } - if (!sametile) { + // Don't clip here if we are binning, because we need to bin points in the buffer + if (!sametile && bins.size() == 0) { // Clip to output tile long long xmin = LLONG_MAX; @@ -1872,7 +1883,7 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int if (bins.size() > 0) { outtile = assign_to_bins(outtile, bins, nz, nx, ny, detail, attribute_accum, accumulate_numeric, - keep, exclude, exclude_prefix); + keep, exclude, exclude_prefix, buffer); } for (ssize_t i = outtile.layers.size() - 1; i >= 0; i--) { diff --git a/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json b/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json index 6eb02825..af5818d7 100644 --- a/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json +++ b/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json @@ -1,125 +1,125 @@ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "bin": "804dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 18, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 53, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 6, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 38, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 36, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 40, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 25804065, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 85, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 18170, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 228193, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 18144, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 220016468, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 220016468, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 118, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 155, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 65, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -584, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -591, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 41.5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 86, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -63.049399, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -625.840964, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 17.746706, "tippecanoe:sum:LABEL_Y": 178.99401999999999, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 10433887195, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 5.888888888888889, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 4.222222222222222, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.444444444444445, "tippecanoe:mean:MAPCOLOR13": 3.7777777777777779, "tippecanoe:mean:POP_EST": 2867118.3333333337, "tippecanoe:mean:POP_RANK": 9.444444444444445, "tippecanoe:mean:POP_YEAR": 2018.888888888889, "tippecanoe:mean:GDP_MD": 25354.777777777777, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 24446274.222222225, "tippecanoe:mean:WOE_ID_EH": 24446274.222222225, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.11111111111111, "tippecanoe:mean:LONG_LEN": 17.22222222222222, "tippecanoe:mean:ABBREV_LEN": 7.222222222222222, "tippecanoe:mean:TINY": -64.88888888888889, "tippecanoe:mean:HOMEPART": -65.66666666666667, "tippecanoe:mean:MIN_ZOOM": 0.5555555555555556, "tippecanoe:mean:MIN_LABEL": 4.611111111111111, "tippecanoe:mean:MAX_LABEL": 9.555555555555556, "tippecanoe:mean:LABEL_X": -69.53788488888888, "tippecanoe:mean:LABEL_Y": 19.888224444444444, "tippecanoe:mean:NE_ID": 1159320799.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.050781, 31.877558 ], [ -57.216797, 21.779905 ], [ -65.742188, 14.519780 ], [ -76.025391, 19.394068 ], [ -74.619141, 30.221102 ], [ -62.050781, 31.877558 ] ] ] } } +{ "type": "Feature", "id": 580331033233195007, "properties": { "bin": "80dbfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 30281307, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 1603495, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424826, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 46849664, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 12.4, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 306.83672, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -63.888522, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 2318641490, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 15140653.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 801747.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712413, "tippecanoe:mean:WOE_ID_EH": 23424832, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.2, "tippecanoe:mean:LABEL_X": 153.41836, "tippecanoe:mean:LABEL_Y": -31.944261, "tippecanoe:mean:NE_ID": 1159320745, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -192.392578, -40.847060 ], [ -177.978516, -45.213004 ], [ -174.462891, -55.727110 ], [ -190.458984, -63.114638 ], [ -209.882812, -58.031372 ], [ -207.509766, -46.739861 ], [ -192.392578, -40.847060 ] ] ], [ [ [ 167.607422, -40.847060 ], [ 182.021484, -45.213004 ], [ 185.537109, -55.727110 ], [ 169.541016, -63.114638 ], [ 150.117188, -58.031372 ], [ 152.490234, -46.739861 ], [ 167.607422, -40.847060 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8045fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 11, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 64948, "tippecanoe:sum:POP_EST": 41087206, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 71, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 225682, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12112, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424858, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 140548869, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424858, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 140548869, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 44, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 48, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -390, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 54, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": -77.318767, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -502.63287199999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.794801, "tippecanoe:sum:LABEL_Y": 105.77001200000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320931, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 6955924238, "tippecanoe:mean:scalerank": 0.6666666666666666, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.8333333333333333, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:mean:POP_EST": 6847867.666666667, "tippecanoe:mean:POP_RANK": 11.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 37613.666666666664, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424811.5, "tippecanoe:mean:WOE_ID_EH": 23424811.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.033333333333333, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -83.77214533333333, "tippecanoe:mean:LABEL_Y": 17.628335333333337, "tippecanoe:mean:NE_ID": 1159320706.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.550781, 37.090240 ], [ -74.619141, 30.221102 ], [ -76.025391, 19.394068 ], [ -85.605469, 13.838080 ], [ -96.064453, 19.228177 ], [ -96.679688, 31.653381 ], [ -84.550781, 37.090240 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8001fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 144373535, "tippecanoe:sum:POP_EST": 144373535, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 1699876, "tippecanoe:sum:GDP_MD": 1699876, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424936, "tippecanoe:min:WOE_ID": 23424936, "tippecanoe:sum:WOE_ID": 23424936, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424936, "tippecanoe:min:WOE_ID_EH": 23424936, "tippecanoe:sum:WOE_ID_EH": 23424936, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 18, "tippecanoe:min:LONG_LEN": 18, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.2, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 5.2, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 44.686469, "tippecanoe:min:LABEL_X": 44.686469, "tippecanoe:sum:LABEL_X": 44.686469, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": 58.249357, "tippecanoe:sum:LABEL_Y": 58.249357, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321201, "tippecanoe:min:NE_ID": 1159321201, "tippecanoe:sum:NE_ID": 1159321201, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 144373535, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1699876, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936, "tippecanoe:mean:WOE_ID_EH": 23424936, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 18, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.2, "tippecanoe:mean:LABEL_X": 44.686469, "tippecanoe:mean:LABEL_Y": 58.249357, "tippecanoe:mean:NE_ID": 1159321201, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.546875, 87.364326 ], [ 94.130859, 76.163993 ], [ 62.314453, 69.380313 ], [ 31.816406, 68.942607 ], [ 0.351562, 73.302624 ], [ -34.716797, 81.268385 ], [ 145.546875, 87.364326 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359, 50.792047 ], [ -54.843750, 40.979898 ], [ -62.050781, 31.877558 ], [ -74.619141, 30.221102 ], [ -84.550781, 37.090240 ], [ -81.914062, 48.283193 ], [ -63.193359, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80adfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, -14.604847 ], [ 23.906250, -24.686952 ], [ 18.369141, -35.029996 ], [ 4.394531, -35.746512 ], [ -2.109375, -24.766785 ], [ 4.570312, -15.284185 ], [ 16.259766, -14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.748047, 69.380313 ], [ -100.810547, 67.542167 ], [ -98.525391, 55.229023 ], [ -112.763672, 47.989922 ], [ -128.935547, 50.176898 ], [ -139.658203, 59.175928 ], [ -131.748047, 69.380313 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8095fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 271918687, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1119190, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 1121207, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424846, "tippecanoe:sum:WOE_ID": 46849814, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424846, "tippecanoe:sum:WOE_ID_EH": 46849814, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 101.892949, "tippecanoe:sum:LABEL_X": 227.74762800000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -0.954404, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -9.758109000000001, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320845, "tippecanoe:sum:NE_ID": 2318642158, "tippecanoe:mean:scalerank": 0.5, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 135959343.5, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 560603.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424907, "tippecanoe:mean:WOE_ID_EH": 23424907, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 113.87381400000001, "tippecanoe:mean:LABEL_Y": -4.8790545000000009, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 135.878906, -7.710992 ], [ 133.857422, -18.895893 ], [ 122.783203, -21.779905 ], [ 114.257812, -14.519780 ], [ 115.664062, -3.864255 ], [ 126.298828, 0.175781 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 10269417, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 238785, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424925, "tippecanoe:mean:WOE_ID_EH": 23424925, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -8.271754, "tippecanoe:mean:LABEL_Y": 39.606675, "tippecanoe:mean:NE_ID": 1159321187, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.509766, 46.739861 ], [ -12.392578, 40.847060 ], [ -12.919922, 28.536275 ], [ -24.609375, 22.024546 ], [ -37.177734, 26.667096 ], [ -40.341797, 38.754083 ], [ -27.509766, 46.739861 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8039fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 17, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 37, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 43053054, "tippecanoe:min:POP_EST": 77142, "tippecanoe:sum:POP_EST": 98677389, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 76, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 171091, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 385739, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 12102, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 140549216, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 140549216, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -490, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 22.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 18.011015, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 11.548945999999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 42.547643, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 185.88957100000003, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 6955925494, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 2.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.166666666666667, "tippecanoe:mean:POP_EST": 16446231.5, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 64289.833333333336, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -81.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.7833333333333333, "tippecanoe:mean:MIN_LABEL": 3.6999999999999999, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 1.9248243333333333, "tippecanoe:mean:LABEL_Y": 30.98159516666667, "tippecanoe:mean:NE_ID": 1159320915.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.213004 ], [ 13.271484, 37.509726 ], [ 9.404297, 25.641526 ], [ -2.460938, 22.187405 ], [ -12.919922, 28.536275 ], [ -12.392578, 40.847060 ], [ 2.021484, 45.213004 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8055fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 28, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 36, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 50612523, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 89, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 53830, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 163974246, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 163974246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 61, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 33, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -693, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 26.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 62, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -9.460379, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -85.281791, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 86.213762, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 8115246975, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5714285714285718, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 5.142857142857143, "tippecanoe:mean:POP_EST": 7230360.428571428, "tippecanoe:mean:POP_RANK": 12.714285714285714, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7690, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892.285714289, "tippecanoe:mean:WOE_ID_EH": 23424892.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.714285714285714, "tippecanoe:mean:LONG_LEN": 9.285714285714287, "tippecanoe:mean:ABBREV_LEN": 4.714285714285714, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.814285714285714, "tippecanoe:mean:MAX_LABEL": 8.857142857142858, "tippecanoe:mean:LABEL_X": -12.183113, "tippecanoe:mean:LABEL_Y": 12.316251714285715, "tippecanoe:mean:NE_ID": 1159320996.4285715, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.919922, 28.536275 ], [ -2.460938, 22.187405 ], [ -4.042969, 11.523088 ], [ -13.710938, 6.227934 ], [ -23.642578, 10.660608 ], [ -24.609375, 22.024546 ], [ -12.919922, 28.536275 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "808dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 5705956, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4035, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 372097, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424858, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 46849817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 209.48951499999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -9.124202, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 2318641610, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 2852978, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:mean:GDP_MD": 186048.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 11712429, "tippecanoe:mean:WOE_ID_EH": 23424908.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 104.74475749999999, "tippecanoe:mean:LABEL_Y": -4.562101, "tippecanoe:mean:NE_ID": 1159320805, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 2.811371 ], [ 115.664062, -3.864255 ], [ 114.257812, -14.519780 ], [ 103.974609, -19.394068 ], [ 94.394531, -13.838080 ], [ 95.185547, -2.547988 ], [ 106.435547, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8057fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.177734, 26.667096 ], [ -24.609375, 22.024546 ], [ -23.642578, 10.660608 ], [ -32.519531, 3.425692 ], [ -44.121094, 7.710992 ], [ -46.142578, 18.895893 ], [ -37.177734, 26.667096 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "806bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 164874917, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 50400, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 122404, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117124163, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117124163, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 60, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 100, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 19, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 32.948555, "tippecanoe:min:LABEL_X": 15.9005, "tippecanoe:sum:LABEL_X": 153.70882600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -1.897196, "tippecanoe:sum:LABEL_Y": 12.579715, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 6955925288, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.1666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 27479152.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20400.666666666668, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 19520693.833333333, "tippecanoe:mean:WOE_ID_EH": 19520693.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 16.666666666666669, "tippecanoe:mean:ABBREV_LEN": 6.166666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 25.61813766666667, "tippecanoe:mean:LABEL_Y": 2.0966191666666669, "tippecanoe:mean:NE_ID": 1159320881.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 37.880859, 8.928487 ], [ 33.662109, -1.669686 ], [ 21.357422, -3.337954 ], [ 14.589844, 5.790897 ], [ 18.369141, 16.467695 ], [ 31.201172, 18.229351 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "801bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.591797, 61.312452 ], [ -29.882812, 58.031372 ], [ -27.509766, 46.739861 ], [ -40.341797, 38.754083 ], [ -54.843750, 40.979898 ], [ -63.193359, 50.792047 ], [ -51.591797, 61.312452 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "805ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 21, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 48, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 29, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 30, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 3513081, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 82, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 43581, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 18158, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 210823816, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 210823816, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 105, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 121, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -274, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 41, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 85, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -62.188252, "tippecanoe:sum:LABEL_X": -542.980765, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 17.352249, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 109.959432, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 10433887911, "tippecanoe:mean:scalerank": 2.3333333333333337, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.1111111111111111, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.2222222222222225, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 390342.3333333333, "tippecanoe:mean:POP_RANK": 9.11111111111111, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4842.333333333333, "tippecanoe:mean:GDP_YEAR": 2017.5555555555557, "tippecanoe:mean:WOE_ID": 23424868.444444445, "tippecanoe:mean:WOE_ID_EH": 23424868.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.666666666666666, "tippecanoe:mean:LONG_LEN": 13.444444444444445, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:mean:TINY": -30.444444444444444, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.555555555555555, "tippecanoe:mean:MAX_LABEL": 9.444444444444445, "tippecanoe:mean:LABEL_X": -60.33119611111111, "tippecanoe:mean:LABEL_Y": 12.217714666666668, "tippecanoe:mean:NE_ID": 1159320879, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216797, 21.779905 ], [ -46.142578, 18.895893 ], [ -44.121094, 7.710992 ], [ -53.701172, -0.175781 ], [ -64.335938, 3.864255 ], [ -65.742188, 14.519780 ], [ -57.216797, 21.779905 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.119141, -8.928487 ], [ -131.308594, -9.882275 ], [ -125.332031, -19.145168 ], [ -129.814453, -29.075375 ], [ -142.822266, -29.305561 ], [ -148.798828, -18.229351 ], [ -142.119141, -8.928487 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8045fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 11, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 64948, "tippecanoe:sum:POP_EST": 41087206, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 71, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 225682, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12112, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424858, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 140548869, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424858, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 140548869, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 44, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 48, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -390, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 54, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": -77.318767, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -502.63287199999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.794801, "tippecanoe:sum:LABEL_Y": 105.77001200000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320931, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 6955924238, "tippecanoe:mean:scalerank": 0.6666666666666666, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.8333333333333333, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:mean:POP_EST": 6847867.666666667, "tippecanoe:mean:POP_RANK": 11.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 37613.666666666664, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424811.5, "tippecanoe:mean:WOE_ID_EH": 23424811.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.033333333333333, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -83.77214533333333, "tippecanoe:mean:LABEL_Y": 17.628335333333337, "tippecanoe:mean:NE_ID": 1159320706.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.550781, 37.090240 ], [ -74.619141, 30.221102 ], [ -76.025391, 19.394068 ], [ -85.605469, 13.838080 ], [ -96.064453, 19.228177 ], [ -96.679688, 31.653381 ], [ -84.550781, 37.090240 ] ] ] } } , -{ "type": "Feature", "id": 579451423930974207, "properties": { "bin": "80a9fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.767578, -12.382928 ], [ -39.814453, -16.804541 ], [ -37.529297, -27.916767 ], [ -47.724609, -34.307144 ], [ -59.501953, -29.916852 ], [ -61.171875, -19.228177 ], [ -51.767578, -12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80ddfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 30, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.621094, -43.897892 ], [ -4.394531, -46.195042 ], [ 4.218750, -56.218923 ], [ -7.119141, -66.196009 ], [ -34.628906, -62.512318 ], [ -34.628906, -51.124213 ], [ -21.621094, -43.897892 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80dffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 63894148, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 33, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 6054, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 728045, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 6050, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:sum:WOE_ID": 70274343, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:sum:WOE_ID_EH": 70274343, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 41, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 8.2, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:sum:LABEL_X": -195.23080400000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -123.261843, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 3477961535, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21298049.333333333, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 242681.66666666667, "tippecanoe:mean:GDP_YEAR": 2016.6666666666668, "tippecanoe:mean:WOE_ID": 23424781, "tippecanoe:mean:WOE_ID_EH": 23424781, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 13.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.733333333333333, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -65.07693466666668, "tippecanoe:mean:LABEL_Y": -41.087281, "tippecanoe:mean:NE_ID": 1159320511.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.251953, -45.274886 ], [ -34.628906, -51.124213 ], [ -34.628906, -62.512318 ], [ -62.226562, -66.196009 ], [ -73.564453, -56.218923 ], [ -63.808594, -47.338823 ], [ -48.251953, -45.274886 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8009fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 50, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 10285453, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 22558815, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 66, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 530883, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 1239665, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 106277162, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 129702162, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 41, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -388, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 20, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": -7.058429, "tippecanoe:sum:LABEL_X": 94.651842, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 58.724865, "tippecanoe:sum:LABEL_Y": 371.53556900000009, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 6955924804, "tippecanoe:mean:scalerank": 1.3333333333333333, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 3759802.5, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206610.83333333335, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 17712860.333333333, "tippecanoe:mean:WOE_ID_EH": 21617027, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.833333333333333, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.166666666666667, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 15.775307, "tippecanoe:mean:LABEL_Y": 61.92259483333334, "tippecanoe:mean:NE_ID": 1159320800.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 73.302624 ], [ 31.816406, 68.942607 ], [ 25.048828, 58.401712 ], [ 5.537109, 55.727110 ], [ -10.458984, 63.114638 ], [ 0.351562, 73.302624 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80cffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.738281, -33.651208 ], [ -69.345703, -37.160317 ], [ -63.808594, -47.338823 ], [ -73.564453, -56.218923 ], [ -92.197266, -52.643063 ], [ -93.251953, -40.313043 ], [ -81.738281, -33.651208 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "808ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 17373662, "tippecanoe:min:POP_EST": 17373662, "tippecanoe:sum:POP_EST": 17373662, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 107435, "tippecanoe:min:GDP_MD": 107435, "tippecanoe:sum:GDP_MD": 107435, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424801, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 23424801, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424801, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 23424801, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -78.188375, "tippecanoe:min:LABEL_X": -78.188375, "tippecanoe:sum:LABEL_X": -78.188375, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -1.259076, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": -1.259076, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320567, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 1159320567, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 17373662, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 107435, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424801, "tippecanoe:mean:WOE_ID_EH": 23424801, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -78.188375, "tippecanoe:mean:LABEL_Y": -1.259076, "tippecanoe:mean:NE_ID": 1159320567, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.814453, 2.547988 ], [ -73.564453, -2.811371 ], [ -72.246094, -15.029686 ], [ -82.880859, -22.268764 ], [ -94.570312, -16.720385 ], [ -95.097656, -4.390229 ], [ -84.814453, 2.547988 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "803ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 187646861, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 303092, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 389095, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12113, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 121988700, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 145413742, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 49.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 35.291341, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 136.580237, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 143.04638999999998, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159320575, "tippecanoe:sum:NE_ID": 6955926156, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 31274476.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 64849.166666666664, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 20331450, "tippecanoe:mean:WOE_ID_EH": 24235623.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 1.1666666666666668, "tippecanoe:mean:MIN_LABEL": 3.1166666666666669, "tippecanoe:mean:MAX_LABEL": 8.200000000000001, "tippecanoe:mean:LABEL_X": 22.763372833333336, "tippecanoe:mean:LABEL_Y": 23.841064999999998, "tippecanoe:mean:NE_ID": 1159321026, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 37.177734, 29.305561 ], [ 31.201172, 18.229351 ], [ 18.369141, 16.467695 ], [ 9.404297, 25.641526 ], [ 13.271484, 37.509726 ], [ 28.828125, 39.639538 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8073fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.185547, 16.804541 ], [ 149.765625, 8.667918 ], [ 147.480469, -3.425692 ], [ 135.878906, -7.710992 ], [ 126.298828, 0.175781 ], [ 128.232422, 12.382928 ], [ 140.185547, 16.804541 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "802dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 16, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 16, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 16, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 53, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 55, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 16, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 227966087, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 196, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 32296, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2354758, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 32280, "tippecanoe:count:WOE_ID": 16, "tippecanoe:max:WOE_ID": 23424972, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 281097956, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:max:WOE_ID_EH": 23424995, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 327948125, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 132, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 138, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 68, "tippecanoe:count:TINY": 16, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1379, "tippecanoe:count:HOMEPART": 16, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -84, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.9, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 142.7, "tippecanoe:count:LABEL_X": 16, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 33.084182, "tippecanoe:sum:LABEL_X": 663.980747, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 552.20492, "tippecanoe:count:NE_ID": 16, "tippecanoe:max:NE_ID": 1159321309, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 18549133226, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.125, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 3.3125, "tippecanoe:mean:MAPCOLOR8": 2.8125, "tippecanoe:mean:MAPCOLOR9": 3.4375, "tippecanoe:mean:MAPCOLOR13": 0.125, "tippecanoe:mean:POP_EST": 14247880.4375, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 147172.375, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568622.25, "tippecanoe:mean:WOE_ID_EH": 20496757.8125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 8.625, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86.1875, "tippecanoe:mean:HOMEPART": -5.25, "tippecanoe:mean:MIN_ZOOM": 0.4375, "tippecanoe:mean:MIN_LABEL": 4.18125, "tippecanoe:mean:MAX_LABEL": 8.91875, "tippecanoe:mean:LABEL_X": 41.4987966875, "tippecanoe:mean:LABEL_Y": 34.5128075, "tippecanoe:mean:NE_ID": 1159320826.625, "tippecanoe:count": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 49.781264 ], [ 53.701172, 49.382373 ], [ 59.150391, 37.649034 ], [ 50.185547, 29.075375 ], [ 37.177734, 29.305561 ], [ 28.828125, 39.639538 ], [ 36.123047, 49.781264 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8075fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 25716544, "tippecanoe:sum:POP_EST": 25716544, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 58539, "tippecanoe:sum:GDP_MD": 58539, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424854, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 23424854, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424854, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 23424854, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_X": -5.568618, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.49139, "tippecanoe:min:LABEL_Y": 7.49139, "tippecanoe:sum:LABEL_Y": 7.49139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320507, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 1159320507, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 25716544, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 58539, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854, "tippecanoe:mean:WOE_ID_EH": 23424854, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -5.568618, "tippecanoe:mean:LABEL_Y": 7.49139, "tippecanoe:mean:NE_ID": 1159320507, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.042969, 11.523088 ], [ 3.955078, 3.951941 ], [ -0.791016, -5.878332 ], [ -11.689453, -4.477856 ], [ -13.710938, 6.227934 ], [ -4.042969, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "801ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 28, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 28, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 28, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 28, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 56, "tippecanoe:count:GEOU_DIF": 28, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 28, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 28, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 28, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 89, "tippecanoe:count:MAPCOLOR8": 28, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 97, "tippecanoe:count:MAPCOLOR9": 28, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 101, "tippecanoe:count:MAPCOLOR13": 28, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 196, "tippecanoe:count:POP_EST": 28, "tippecanoe:max:POP_EST": 83429615, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 437433879, "tippecanoe:count:POP_RANK": 28, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 361, "tippecanoe:count:POP_YEAR": 28, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 56532, "tippecanoe:count:GDP_MD": 28, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 5542, "tippecanoe:sum:GDP_MD": 10714600, "tippecanoe:count:GDP_YEAR": 28, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 56531, "tippecanoe:count:WOE_ID": 28, "tippecanoe:max:WOE_ID": 23424976, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 605691022, "tippecanoe:count:WOE_ID_EH": 28, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 655150221, "tippecanoe:count:ADM0_A3_UN": 28, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2772, "tippecanoe:count:ADM0_A3_WB": 28, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2772, "tippecanoe:count:NAME_LEN": 28, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 227, "tippecanoe:count:LONG_LEN": 28, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 240, "tippecanoe:count:ABBREV_LEN": 28, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 126, "tippecanoe:count:TINY": 28, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2563, "tippecanoe:count:HOMEPART": 28, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 28, "tippecanoe:count:MIN_ZOOM": 28, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 28, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 108.10000000000001, "tippecanoe:count:MAX_LABEL": 28, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 241.5, "tippecanoe:count:LABEL_X": 28, "tippecanoe:max:LABEL_X": 34.508268, "tippecanoe:min:LABEL_X": 4.800448, "tippecanoe:sum:LABEL_X": 520.222516, "tippecanoe:count:LABEL_Y": 28, "tippecanoe:max:LABEL_Y": 57.066872, "tippecanoe:min:LABEL_Y": 39.345388, "tippecanoe:sum:LABEL_Y": 1329.7201530000003, "tippecanoe:count:NE_ID": 28, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 32460984236, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.535714285714286, "tippecanoe:mean:ADM0_DIF": 0.03571428571428571, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1785714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4642857142857146, "tippecanoe:mean:MAPCOLOR9": 3.607142857142857, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15622638.535714286, "tippecanoe:mean:POP_RANK": 12.892857142857143, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 382664.28571428576, "tippecanoe:mean:GDP_YEAR": 2018.9642857142858, "tippecanoe:mean:WOE_ID": 21631822.214285714, "tippecanoe:mean:WOE_ID_EH": 23398222.17857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.107142857142858, "tippecanoe:mean:LONG_LEN": 8.571428571428572, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -91.53571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.860714285714286, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:mean:LABEL_X": 18.579375571428576, "tippecanoe:mean:LABEL_Y": 47.49000546428572, "tippecanoe:mean:NE_ID": 1159320865.5714286, "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, 58.401712 ], [ 36.123047, 49.781264 ], [ 28.828125, 39.639538 ], [ 13.271484, 37.509726 ], [ 2.021484, 45.213004 ], [ 5.537109, 55.727110 ], [ 25.048828, 58.401712 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.748047, 69.380313 ], [ -100.810547, 67.542167 ], [ -98.525391, 55.229023 ], [ -112.763672, 47.989922 ], [ -128.935547, 50.176898 ], [ -139.658203, 59.175928 ], [ -131.748047, 69.380313 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8043fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 73.564453, 33.724340 ], [ 74.970703, 22.431340 ], [ 65.742188, 16.130262 ], [ 54.667969, 19.145168 ], [ 50.185547, 29.075375 ], [ 59.150391, 37.649034 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8069fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.828125, 19.228177 ], [ 128.232422, 12.382928 ], [ 126.298828, 0.175781 ], [ 115.664062, -3.864255 ], [ 106.435547, 2.811371 ], [ 107.753906, 15.029686 ], [ 118.828125, 19.228177 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8021fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 43, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -64, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 322521745, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 99, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16136, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 554279, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16140, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549214, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044442, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 82, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 93, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 10, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 30.9, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 65, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 77.129553, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 555.3665579999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 315.427716, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568056, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 5.375, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 40315218.125, "tippecanoe:mean:POP_RANK": 12.375, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 69284.875, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568651.75, "tippecanoe:mean:WOE_ID_EH": 23005555.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.25, "tippecanoe:mean:LONG_LEN": 11.625, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:mean:MIN_LABEL": 3.8625, "tippecanoe:mean:MAX_LABEL": 8.125, "tippecanoe:mean:LABEL_X": 69.42081974999999, "tippecanoe:mean:LABEL_Y": 39.4284645, "tippecanoe:mean:NE_ID": 1159321007, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.291016, 58.309489 ], [ 87.802734, 52.643063 ], [ 86.748047, 40.313043 ], [ 73.564453, 33.724340 ], [ 59.150391, 37.649034 ], [ 53.701172, 49.382373 ], [ 68.291016, 58.309489 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80f3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -148.183594, -68.942607 ], [ -117.685547, -69.380313 ], [ -85.869141, -76.163993 ], [ -34.453125, -87.364326 ], [ -214.716797, -81.268385 ], [ -179.648438, -73.302624 ], [ -148.183594, -68.942607 ] ] ], [ [ [ 211.816406, -68.942607 ], [ 242.314453, -69.380313 ], [ 274.130859, -76.163993 ], [ 325.546875, -87.364326 ], [ 145.283203, -81.268385 ], [ 180.351562, -73.302624 ], [ 211.816406, -68.942607 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8053fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 33, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 128702884, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 79, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 14129, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 175837, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 333548, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 14119, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424930, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117123896, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424930, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117123896, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -592, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 11, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 29.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 61, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 51.143509, "tippecanoe:min:LABEL_X": 33.673428, "tippecanoe:sum:LABEL_X": 301.976339, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 26.055972, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 118.394225, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 8685559699, "tippecanoe:mean:scalerank": 0.7142857142857143, "tippecanoe:mean:LABELRANK": 4.714285714285714, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 2.2857142857142858, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 2.4285714285714286, "tippecanoe:mean:MAPCOLOR13": 7.571428571428571, "tippecanoe:mean:POP_EST": 18386126.285714289, "tippecanoe:mean:POP_RANK": 11.285714285714287, "tippecanoe:mean:POP_YEAR": 2018.4285714285714, "tippecanoe:mean:GDP_MD": 47649.71428571428, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 16731985.142857144, "tippecanoe:mean:WOE_ID_EH": 16731985.142857144, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:mean:ABBREV_LEN": 5.285714285714286, "tippecanoe:mean:TINY": -84.57142857142857, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 1.5714285714285715, "tippecanoe:mean:MIN_LABEL": 4.214285714285714, "tippecanoe:mean:MAX_LABEL": 8.714285714285714, "tippecanoe:mean:LABEL_X": 43.139477, "tippecanoe:mean:LABEL_Y": 16.913460714285717, "tippecanoe:mean:NE_ID": 1240794242.7142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 29.305561 ], [ 50.185547, 29.075375 ], [ 54.667969, 19.145168 ], [ 48.691406, 9.882275 ], [ 37.880859, 8.928487 ], [ 31.201172, 18.229351 ], [ 37.177734, 29.305561 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8085fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.005859, 5.266008 ], [ 74.794922, -0.878872 ], [ 73.476562, -12.125264 ], [ 61.523438, -16.551962 ], [ 52.910156, -8.928487 ], [ 55.722656, 1.406109 ], [ 66.005859, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8041fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 111138961, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 645805, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 71715554, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 71715554, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 322.01897299999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 63.59606600000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 37046320.333333339, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 215268.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905184.666666669, "tippecanoe:mean:WOE_ID_EH": 23905184.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 7.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 107.33965766666666, "tippecanoe:mean:LABEL_Y": 21.19868866666667, "tippecanoe:mean:NE_ID": 1159320967, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 37.160317 ], [ 120.498047, 29.916852 ], [ 118.828125, 19.228177 ], [ 107.753906, 15.029686 ], [ 97.119141, 22.268764 ], [ 98.261719, 33.651208 ], [ 110.654297, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "807bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58005463, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 110579436, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 63177, "tippecanoe:sum:GDP_MD": 158680, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424973, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 46849836, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424973, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 46849836, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 34.959183, "tippecanoe:sum:LABEL_X": 72.866815, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -5.502823, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321337, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 2318642308, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 55289718, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 79340, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424918, "tippecanoe:mean:WOE_ID_EH": 23424918, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:mean:LABEL_X": 36.4334075, "tippecanoe:mean:LABEL_Y": -2.7514115, "tippecanoe:mean:NE_ID": 1159321154, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.691406, 9.882275 ], [ 55.722656, 1.406109 ], [ 52.910156, -8.928487 ], [ 41.572266, -11.264612 ], [ 33.662109, -1.669686 ], [ 37.880859, 8.928487 ], [ 48.691406, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8031fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 77375259, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 1686739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424868, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 46849733, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424868, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 46849733, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 5.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 254.57402, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 36.384924, "tippecanoe:sum:LABEL_Y": 76.27017599999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642166, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 38687629.5, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 843369.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424866.5, "tippecanoe:mean:WOE_ID_EH": 23424866.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.75, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 127.28701, "tippecanoe:mean:LABEL_Y": 38.135087999999999, "tippecanoe:mean:NE_ID": 1159321083, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.191406, 47.338823 ], [ 131.748047, 45.274886 ], [ 132.275391, 34.307144 ], [ 120.498047, 29.916852 ], [ 110.654297, 37.160317 ], [ 116.191406, 47.338823 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8059fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 277141352, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 573990, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424965, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 117124246, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424965, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 117124246, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 16.4, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 41.7, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 12.473488, "tippecanoe:min:LABEL_X": -1.036941, "tippecanoe:sum:LABEL_X": 22.349898, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 10.324775, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 40.874474000000009, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 5796604093, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6, "tippecanoe:mean:MAPCOLOR8": 2.4, "tippecanoe:mean:MAPCOLOR9": 2.4, "tippecanoe:mean:MAPCOLOR13": 5.2, "tippecanoe:mean:POP_EST": 55428270.4, "tippecanoe:mean:POP_RANK": 14.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 114798, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424849.2, "tippecanoe:mean:WOE_ID_EH": 23424849.2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.8, "tippecanoe:mean:LONG_LEN": 5.8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.28, "tippecanoe:mean:MAX_LABEL": 8.34, "tippecanoe:mean:LABEL_X": 4.4699796, "tippecanoe:mean:LABEL_Y": 8.1748948, "tippecanoe:mean:NE_ID": 1159320818.6, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.404297, 25.641526 ], [ 18.369141, 16.467695 ], [ 14.589844, 5.790897 ], [ 3.955078, 3.951941 ], [ -4.042969, 11.523088 ], [ -2.460938, 22.187405 ], [ 9.404297, 25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8025fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 56.218923 ], [ 116.191406, 47.338823 ], [ 110.654297, 37.160317 ], [ 98.261719, 33.651208 ], [ 86.748047, 40.313043 ], [ 87.802734, 52.643063 ], [ 106.435547, 56.218923 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8099fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.689453, -4.477856 ], [ -0.791016, -5.878332 ], [ 4.570312, -15.284185 ], [ -2.109375, -24.766785 ], [ -15.556641, -22.998852 ], [ -19.248047, -12.211180 ], [ -11.689453, -4.477856 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "804ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.775391, 31.877558 ], [ 164.443359, 22.998852 ], [ 160.751953, 12.211180 ], [ 149.765625, 8.667918 ], [ 140.185547, 16.804541 ], [ 142.470703, 27.916767 ], [ 154.775391, 31.877558 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8077fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 12.211180 ], [ 168.310547, 4.477856 ], [ 166.289062, -6.227934 ], [ 156.357422, -10.660608 ], [ 147.480469, -3.425692 ], [ 149.765625, 8.667918 ], [ 160.751953, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "803dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 763092, "tippecanoe:sum:POP_EST": 192417963, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 2530, "tippecanoe:sum:GDP_MD": 335742, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424911, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 70274440, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424911, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 70274440, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 83.639914, "tippecanoe:sum:LABEL_X": 263.36517100000006, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 28.297925, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 80.049566, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 3477961981, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 64139321, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 111914, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424813.333333333, "tippecanoe:mean:WOE_ID_EH": 23424813.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 87.78839033333334, "tippecanoe:mean:LABEL_Y": 26.683188666666667, "tippecanoe:mean:NE_ID": 1159320660.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.748047, 40.313043 ], [ 98.261719, 33.651208 ], [ 97.119141, 22.268764 ], [ 85.429688, 16.720385 ], [ 74.970703, 22.431340 ], [ 73.564453, 33.724340 ], [ 86.748047, 40.313043 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8065fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 14, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 16486542, "tippecanoe:sum:POP_EST": 1506575298, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 3515651, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 93699347, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 93699347, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 20, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.4, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 104.50487, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 380.74066999999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 72.36803099999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 4637284198, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 376643824.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 878912.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424836.75, "tippecanoe:mean:WOE_ID_EH": 23424836.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.6, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 95.18516749999999, "tippecanoe:mean:LABEL_Y": 18.092007749999998, "tippecanoe:mean:NE_ID": 1159321049.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.119141, 22.268764 ], [ 107.753906, 15.029686 ], [ 106.435547, 2.811371 ], [ 95.185547, -2.547988 ], [ 84.902344, 4.390229 ], [ 85.429688, 16.720385 ], [ 97.119141, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "804bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 149833309, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 6208769, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 46849827, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 46849827, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 6.2, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 259.310374, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 59.794946, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 2318642272, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 74916654.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 3104384.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424913.5, "tippecanoe:mean:WOE_ID_EH": 23424913.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 129.655187, "tippecanoe:mean:LABEL_Y": 29.897473, "tippecanoe:mean:NE_ID": 1159321136, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.275391, 34.307144 ], [ 142.470703, 27.916767 ], [ 140.185547, 16.804541 ], [ 128.232422, 12.382928 ], [ 118.828125, 19.228177 ], [ 120.498047, 29.916852 ], [ 132.275391, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8019fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 20, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 62792, "tippecanoe:sum:POP_EST": 71923225, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 44, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3465, "tippecanoe:sum:GDP_MD": 3228762, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 8071, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699452, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 40, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 40, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 34.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -2.116346, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -17.006739, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 211.16583099999998, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320713, "tippecanoe:sum:NE_ID": 4637283026, "tippecanoe:mean:scalerank": 2.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.75, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 5.25, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 2.75, "tippecanoe:mean:POP_EST": 17980806.25, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 807190.5, "tippecanoe:mean:GDP_YEAR": 2017.75, "tippecanoe:mean:WOE_ID": 17568596.75, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.675, "tippecanoe:mean:LABEL_X": -4.25168475, "tippecanoe:mean:LABEL_Y": 52.79145774999999, "tippecanoe:mean:NE_ID": 1159320756.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.114638 ], [ 5.537109, 55.727110 ], [ 2.021484, 45.213004 ], [ -12.392578, 40.847060 ], [ -27.509766, 46.739861 ], [ -29.882812, 58.031372 ], [ -10.458984, 63.114638 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8097fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 95335558, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 23309, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 89058, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 12114, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 140549327, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 140549327, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 45, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 45, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 20.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 181.86301600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -86.337881, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 6955925882, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15889259.666666666, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14843, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887.833333333, "tippecanoe:mean:WOE_ID_EH": 23424887.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4166666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 30.310502666666669, "tippecanoe:mean:LABEL_Y": -14.389646833333332, "tippecanoe:mean:NE_ID": 1159320980.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -1.669686 ], [ 41.572266, -11.264612 ], [ 37.265625, -22.917923 ], [ 23.906250, -24.686952 ], [ 16.259766, -14.604847 ], [ 21.357422, -3.337954 ], [ 33.662109, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8083fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 16, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 35568916, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 49, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 117133, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 93699337, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 93699337, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 15, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 34, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 45.831388, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 2.333, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -9.316601, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 4637283090, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 8892229, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 29283.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.25, "tippecanoe:mean:WOE_ID_EH": 23424834.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 12.25, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 11.457847, "tippecanoe:mean:LABEL_Y": -2.32915025, "tippecanoe:mean:NE_ID": 1159320772.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.790897 ], [ 21.357422, -3.337954 ], [ 16.259766, -14.604847 ], [ 4.570312, -15.284185 ], [ -0.791016, -5.878332 ], [ 3.955078, 3.951941 ], [ 14.589844, 5.790897 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80a3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 29085904, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 29327, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 70274563, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 70274563, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -95, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 147.58818300000002, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -50.655477000000008, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 3477962651, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 9695301.333333334, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9775.666666666666, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854.333333333, "tippecanoe:mean:WOE_ID_EH": 23424854.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 8.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -31.666666666666669, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 49.19606100000001, "tippecanoe:mean:LABEL_Y": -16.885159, "tippecanoe:mean:NE_ID": 1159320883.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, -8.928487 ], [ 61.523438, -16.551962 ], [ 58.623047, -28.690588 ], [ 45.878906, -31.278551 ], [ 37.265625, -22.917923 ], [ 41.572266, -11.264612 ], [ 52.910156, -8.928487 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8067fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:min:POP_EST": 157538, "tippecanoe:sum:POP_EST": 139648054, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 94, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 907050, "tippecanoe:min:GDP_MD": 3101, "tippecanoe:sum:GDP_MD": 2022293, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 14128, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117124347, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424787, "tippecanoe:sum:WOE_ID_EH": 165099246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 29, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -590, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 24.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 59.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -85.069347, "tippecanoe:sum:LABEL_X": -439.40447900000006, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": 83.53883499999999, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320517, "tippecanoe:sum:NE_ID": 8115247543, "tippecanoe:mean:scalerank": 0.42857142857142857, "tippecanoe:mean:LABELRANK": 3.7142857142857146, "tippecanoe:mean:ADM0_DIF": 0.2857142857142857, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.857142857142857, "tippecanoe:mean:MAPCOLOR8": 2.857142857142857, "tippecanoe:mean:MAPCOLOR9": 2.7142857142857146, "tippecanoe:mean:MAPCOLOR13": 6.571428571428571, "tippecanoe:mean:POP_EST": 19949722, "tippecanoe:mean:POP_RANK": 13.428571428571429, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 288899, "tippecanoe:mean:GDP_YEAR": 2018.2857142857143, "tippecanoe:mean:WOE_ID": 16732049.57142857, "tippecanoe:mean:WOE_ID_EH": 23585606.57142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:mean:ABBREV_LEN": 4.142857142857143, "tippecanoe:mean:TINY": -84.28571428571429, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -62.77206842857144, "tippecanoe:mean:LABEL_Y": 11.934119285714285, "tippecanoe:mean:NE_ID": 1159321077.5714286, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025391, 19.394068 ], [ -65.742188, 14.519780 ], [ -64.335938, 3.864255 ], [ -73.564453, -2.811371 ], [ -84.814453, 2.547988 ], [ -85.605469, 13.838080 ], [ -76.025391, 19.394068 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80bdfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, -22.917923 ], [ 45.878906, -31.278551 ], [ 41.572266, -41.442726 ], [ 26.982422, -43.452919 ], [ 18.369141, -35.029996 ], [ 23.906250, -24.686952 ], [ 37.265625, -22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "808bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.335938, 3.864255 ], [ -53.701172, -0.175781 ], [ -51.767578, -12.382928 ], [ -61.171875, -19.228177 ], [ -72.246094, -15.029686 ], [ -73.564453, -2.811371 ], [ -64.335938, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80d7fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 58558270, "tippecanoe:sum:POP_EST": 58558270, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 351431, "tippecanoe:sum:GDP_MD": 351431, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424942, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 23424942, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424942, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 23424942, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 23.665734, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 23.665734, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -29.708776, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -29.708776, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 1159321431, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 58558270, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 351431, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424942, "tippecanoe:mean:WOE_ID_EH": 23424942, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 23.665734, "tippecanoe:mean:LABEL_Y": -29.708776, "tippecanoe:mean:NE_ID": 1159321431, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.572266, -41.442726 ], [ 51.064453, -50.176898 ], [ 40.341797, -59.175928 ], [ 22.675781, -54.007769 ], [ 26.982422, -43.452919 ], [ 41.572266, -41.442726 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8007fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.716797, 81.268385 ], [ 0.351562, 73.302624 ], [ -10.458984, 63.114638 ], [ -29.882812, 58.031372 ], [ -51.591797, 61.312452 ], [ -66.884766, 72.208678 ], [ -34.716797, 81.268385 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "809ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 1257505, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 13293, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 6054, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 70274576, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 70274576, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11.6, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 166.908762, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 491.163234, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -44.465775, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 3477963311, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 419168.3333333333, "tippecanoe:mean:POP_RANK": 10.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4431, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424858.666666669, "tippecanoe:mean:WOE_ID_EH": 23424858.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.333333333333334, "tippecanoe:mean:LONG_LEN": 11.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.8666666666666669, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 163.721078, "tippecanoe:mean:LABEL_Y": -14.821925, "tippecanoe:mean:NE_ID": 1159321103.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.289062, -6.227934 ], [ 175.957031, -11.523088 ], [ 177.539062, -22.187405 ], [ 167.080078, -28.536275 ], [ 155.390625, -22.024546 ], [ 156.357422, -10.660608 ], [ 166.289062, -6.227934 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "809bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 22, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 26, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1322328, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 47, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 7124, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 12095, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 140549529, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 140549529, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 51, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -187, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 53, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": -675.010406, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:sum:LABEL_Y": -84.18719800000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 6955926130, "tippecanoe:mean:scalerank": 3.6666666666666667, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.166666666666667, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 7.166666666666667, "tippecanoe:mean:POP_EST": 220388, "tippecanoe:mean:POP_RANK": 7.833333333333333, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 1187.3333333333333, "tippecanoe:mean:GDP_YEAR": 2015.8333333333333, "tippecanoe:mean:WOE_ID": 23424921.5, "tippecanoe:mean:WOE_ID_EH": 23424921.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -31.166666666666669, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.9499999999999999, "tippecanoe:mean:MAX_LABEL": 8.833333333333334, "tippecanoe:mean:LABEL_X": -112.50173433333333, "tippecanoe:mean:LABEL_Y": -14.031199666666668, "tippecanoe:mean:NE_ID": 1159321021.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.044922, -3.951941 ], [ -165.410156, -5.790897 ], [ -161.630859, -16.467695 ], [ -170.595703, -25.641526 ], [ -182.460938, -22.187405 ], [ -184.042969, -11.523088 ], [ -176.044922, -3.951941 ] ] ], [ [ [ 183.955078, -3.951941 ], [ 194.589844, -5.790897 ], [ 198.369141, -16.467695 ], [ 189.404297, -25.641526 ], [ 177.539062, -22.187405 ], [ 175.957031, -11.523088 ], [ 183.955078, -3.951941 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.480469, -3.425692 ], [ 156.357422, -10.660608 ], [ 155.390625, -22.024546 ], [ 142.822266, -26.667096 ], [ 133.857422, -18.895893 ], [ 135.878906, -7.710992 ], [ 147.480469, -3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8081fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 7.710992 ], [ -32.519531, 3.425692 ], [ -30.234375, -8.667918 ], [ -39.814453, -16.804541 ], [ -51.767578, -12.382928 ], [ -53.701172, -0.175781 ], [ -44.121094, 7.710992 ] ] ] } } , -{ "type": "Feature", "id": 580331033233195007, "properties": { "bin": "80dbfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 30281307, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 1603495, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424826, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 46849664, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 12.4, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 306.83672, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -63.888522, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 2318641490, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 15140653.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 801747.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712413, "tippecanoe:mean:WOE_ID_EH": 23424832, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.2, "tippecanoe:mean:LABEL_X": 153.41836, "tippecanoe:mean:LABEL_Y": -31.944261, "tippecanoe:mean:NE_ID": 1159320745, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -192.392578, -40.847060 ], [ -177.978516, -45.213004 ], [ -174.462891, -55.727110 ], [ -190.458984, -63.114638 ], [ -209.882812, -58.031372 ], [ -207.509766, -46.739861 ], [ -192.392578, -40.847060 ] ] ], [ [ [ 167.607422, -40.847060 ], [ 182.021484, -45.213004 ], [ 185.537109, -55.727110 ], [ 169.541016, -63.114638 ], [ 150.117188, -58.031372 ], [ 152.490234, -46.739861 ], [ 167.607422, -40.847060 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "806dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 6453553, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 11501114, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 27022, "tippecanoe:sum:GDP_MD": 88823, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424807, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 46849598, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424807, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 46849598, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -172.96804600000002, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 13.685371, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 23.750470999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 2318641778, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 5750557, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44411.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424799, "tippecanoe:mean:WOE_ID_EH": 23424799, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -86.48402300000001, "tippecanoe:mean:LABEL_Y": 11.875235499999999, "tippecanoe:mean:NE_ID": 1159320889, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.064453, 19.228177 ], [ -85.605469, 13.838080 ], [ -84.814453, 2.547988 ], [ -95.097656, -4.390229 ], [ -105.205078, 0.878872 ], [ -106.523438, 12.125264 ], [ -96.064453, 19.228177 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8001fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 144373535, "tippecanoe:sum:POP_EST": 144373535, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 1699876, "tippecanoe:sum:GDP_MD": 1699876, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424936, "tippecanoe:min:WOE_ID": 23424936, "tippecanoe:sum:WOE_ID": 23424936, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424936, "tippecanoe:min:WOE_ID_EH": 23424936, "tippecanoe:sum:WOE_ID_EH": 23424936, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 18, "tippecanoe:min:LONG_LEN": 18, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.2, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 5.2, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 44.686469, "tippecanoe:min:LABEL_X": 44.686469, "tippecanoe:sum:LABEL_X": 44.686469, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": 58.249357, "tippecanoe:sum:LABEL_Y": 58.249357, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321201, "tippecanoe:min:NE_ID": 1159321201, "tippecanoe:sum:NE_ID": 1159321201, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 144373535, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1699876, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936, "tippecanoe:mean:WOE_ID_EH": 23424936, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 18, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.2, "tippecanoe:mean:LABEL_X": 44.686469, "tippecanoe:mean:LABEL_Y": 58.249357, "tippecanoe:mean:NE_ID": 1159321201, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.546875, 87.364326 ], [ 94.130859, 76.163993 ], [ 62.314453, 69.380313 ], [ 31.816406, 68.942607 ], [ 0.351562, 73.302624 ], [ -34.716797, 81.268385 ], [ 145.546875, 87.364326 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8061fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 31, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 37, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 61, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 642457399.3, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 134, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 4719, "tippecanoe:sum:GDP_MD": 26938742, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 18168, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 163974193, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 210824141, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 81, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 70, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -790, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 24.4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 67.1, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": -4.682070999999951, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 46.696113, "tippecanoe:min:LABEL_Y": 3.568925, "tippecanoe:sum:LABEL_Y": 196.935757, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159320405, "tippecanoe:sum:NE_ID": 10433888455, "tippecanoe:mean:scalerank": 0.5555555555555556, "tippecanoe:mean:LABELRANK": 3.111111111111111, "tippecanoe:mean:ADM0_DIF": 0.2222222222222222, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.4444444444444448, "tippecanoe:mean:MAPCOLOR8": 4.111111111111111, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 6.777777777777778, "tippecanoe:mean:POP_EST": 71384155.47777778, "tippecanoe:mean:POP_RANK": 14.88888888888889, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 2993193.5555555557, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 18219354.777777777, "tippecanoe:mean:WOE_ID_EH": 23424904.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 7.777777777777778, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.711111111111111, "tippecanoe:mean:MAX_LABEL": 7.455555555555555, "tippecanoe:mean:LABEL_X": -0.5202301111111056, "tippecanoe:mean:LABEL_Y": 21.88175077777778, "tippecanoe:mean:NE_ID": 1159320939.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 22.431340 ], [ 85.429688, 16.720385 ], [ 84.902344, 4.390229 ], [ 74.794922, -0.878872 ], [ 66.005859, 5.266008 ], [ 65.742188, 16.130262 ], [ 74.970703, 22.431340 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80e1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.236328, -47.989922 ], [ 81.474609, -55.229023 ], [ 79.189453, -67.542167 ], [ 48.251953, -69.380313 ], [ 40.341797, -59.175928 ], [ 51.064453, -50.176898 ], [ 67.236328, -47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359, 50.792047 ], [ -54.843750, 40.979898 ], [ -62.050781, 31.877558 ], [ -74.619141, 30.221102 ], [ -84.550781, 37.090240 ], [ -81.914062, 48.283193 ], [ -63.193359, 50.792047 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80adfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, -14.604847 ], [ 23.906250, -24.686952 ], [ 18.369141, -35.029996 ], [ 4.394531, -35.746512 ], [ -2.109375, -24.766785 ], [ 4.570312, -15.284185 ], [ 16.259766, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 10269417, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 238785, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424925, "tippecanoe:mean:WOE_ID_EH": 23424925, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -8.271754, "tippecanoe:mean:LABEL_Y": 39.606675, "tippecanoe:mean:NE_ID": 1159321187, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.509766, 46.739861 ], [ -12.392578, 40.847060 ], [ -12.919922, 28.536275 ], [ -24.609375, 22.024546 ], [ -37.177734, 26.667096 ], [ -40.341797, 38.754083 ], [ -27.509766, 46.739861 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8095fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 271918687, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1119190, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 1121207, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424846, "tippecanoe:sum:WOE_ID": 46849814, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424846, "tippecanoe:sum:WOE_ID_EH": 46849814, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 101.892949, "tippecanoe:sum:LABEL_X": 227.74762800000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -0.954404, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -9.758109000000001, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320845, "tippecanoe:sum:NE_ID": 2318642158, "tippecanoe:mean:scalerank": 0.5, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 135959343.5, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 560603.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424907, "tippecanoe:mean:WOE_ID_EH": 23424907, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 113.87381400000001, "tippecanoe:mean:LABEL_Y": -4.8790545000000009, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 135.878906, -7.710992 ], [ 133.857422, -18.895893 ], [ 122.783203, -21.779905 ], [ 114.257812, -14.519780 ], [ 115.664062, -3.864255 ], [ 126.298828, 0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8057fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.177734, 26.667096 ], [ -24.609375, 22.024546 ], [ -23.642578, 10.660608 ], [ -32.519531, 3.425692 ], [ -44.121094, 7.710992 ], [ -46.142578, 18.895893 ], [ -37.177734, 26.667096 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8039fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 17, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 37, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 43053054, "tippecanoe:min:POP_EST": 77142, "tippecanoe:sum:POP_EST": 98677389, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 76, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 171091, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 385739, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 12102, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 140549216, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 140549216, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -490, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 22.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 18.011015, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 11.548945999999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 42.547643, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 185.88957100000003, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 6955925494, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 2.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.166666666666667, "tippecanoe:mean:POP_EST": 16446231.5, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 64289.833333333336, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -81.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.7833333333333333, "tippecanoe:mean:MIN_LABEL": 3.6999999999999999, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 1.9248243333333333, "tippecanoe:mean:LABEL_Y": 30.98159516666667, "tippecanoe:mean:NE_ID": 1159320915.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.213004 ], [ 13.271484, 37.509726 ], [ 9.404297, 25.641526 ], [ -2.460938, 22.187405 ], [ -12.919922, 28.536275 ], [ -12.392578, 40.847060 ], [ 2.021484, 45.213004 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "801bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.591797, 61.312452 ], [ -29.882812, 58.031372 ], [ -27.509766, 46.739861 ], [ -40.341797, 38.754083 ], [ -54.843750, 40.979898 ], [ -63.193359, 50.792047 ], [ -51.591797, 61.312452 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "808dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 5705956, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4035, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 372097, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424858, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 46849817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 209.48951499999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -9.124202, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 2318641610, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 2852978, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:mean:GDP_MD": 186048.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 11712429, "tippecanoe:mean:WOE_ID_EH": 23424908.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 104.74475749999999, "tippecanoe:mean:LABEL_Y": -4.562101, "tippecanoe:mean:NE_ID": 1159320805, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 2.811371 ], [ 115.664062, -3.864255 ], [ 114.257812, -14.519780 ], [ 103.974609, -19.394068 ], [ 94.394531, -13.838080 ], [ 95.185547, -2.547988 ], [ 106.435547, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "804dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 18, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 53, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 6, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 38, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 36, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 40, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 25804065, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 85, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 18170, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 228193, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 18144, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 220016468, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 220016468, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 118, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 155, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 65, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -584, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -591, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 41.5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 86, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -63.049399, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -625.840964, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 17.746706, "tippecanoe:sum:LABEL_Y": 178.99401999999999, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 10433887195, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 5.888888888888889, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 4.222222222222222, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.444444444444445, "tippecanoe:mean:MAPCOLOR13": 3.7777777777777779, "tippecanoe:mean:POP_EST": 2867118.3333333337, "tippecanoe:mean:POP_RANK": 9.444444444444445, "tippecanoe:mean:POP_YEAR": 2018.888888888889, "tippecanoe:mean:GDP_MD": 25354.777777777777, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 24446274.222222225, "tippecanoe:mean:WOE_ID_EH": 24446274.222222225, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.11111111111111, "tippecanoe:mean:LONG_LEN": 17.22222222222222, "tippecanoe:mean:ABBREV_LEN": 7.222222222222222, "tippecanoe:mean:TINY": -64.88888888888889, "tippecanoe:mean:HOMEPART": -65.66666666666667, "tippecanoe:mean:MIN_ZOOM": 0.5555555555555556, "tippecanoe:mean:MIN_LABEL": 4.611111111111111, "tippecanoe:mean:MAX_LABEL": 9.555555555555556, "tippecanoe:mean:LABEL_X": -69.53788488888888, "tippecanoe:mean:LABEL_Y": 19.888224444444444, "tippecanoe:mean:NE_ID": 1159320799.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.050781, 31.877558 ], [ -57.216797, 21.779905 ], [ -65.742188, 14.519780 ], [ -76.025391, 19.394068 ], [ -74.619141, 30.221102 ], [ -62.050781, 31.877558 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "806bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 164874917, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 50400, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 122404, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117124163, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117124163, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 60, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 100, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 19, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 32.948555, "tippecanoe:min:LABEL_X": 15.9005, "tippecanoe:sum:LABEL_X": 153.70882600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -1.897196, "tippecanoe:sum:LABEL_Y": 12.579715, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 6955925288, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.1666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 27479152.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20400.666666666668, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 19520693.833333333, "tippecanoe:mean:WOE_ID_EH": 19520693.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 16.666666666666669, "tippecanoe:mean:ABBREV_LEN": 6.166666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 25.61813766666667, "tippecanoe:mean:LABEL_Y": 2.0966191666666669, "tippecanoe:mean:NE_ID": 1159320881.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 37.880859, 8.928487 ], [ 33.662109, -1.669686 ], [ 21.357422, -3.337954 ], [ 14.589844, 5.790897 ], [ 18.369141, 16.467695 ], [ 31.201172, 18.229351 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8055fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 28, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 36, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 50612523, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 89, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 53830, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 163974246, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 163974246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 61, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 33, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -693, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 26.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 62, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -9.460379, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -85.281791, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 86.213762, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 8115246975, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5714285714285718, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 5.142857142857143, "tippecanoe:mean:POP_EST": 7230360.428571428, "tippecanoe:mean:POP_RANK": 12.714285714285714, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7690, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892.285714289, "tippecanoe:mean:WOE_ID_EH": 23424892.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.714285714285714, "tippecanoe:mean:LONG_LEN": 9.285714285714287, "tippecanoe:mean:ABBREV_LEN": 4.714285714285714, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.814285714285714, "tippecanoe:mean:MAX_LABEL": 8.857142857142858, "tippecanoe:mean:LABEL_X": -12.183113, "tippecanoe:mean:LABEL_Y": 12.316251714285715, "tippecanoe:mean:NE_ID": 1159320996.4285715, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.919922, 28.536275 ], [ -2.460938, 22.187405 ], [ -4.042969, 11.523088 ], [ -13.710938, 6.227934 ], [ -23.642578, 10.660608 ], [ -24.609375, 22.024546 ], [ -12.919922, 28.536275 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "805ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 21, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 48, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 29, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 30, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 3513081, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 82, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 43581, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 18158, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 210823816, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 210823816, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 105, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 121, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -274, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 41, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 85, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -62.188252, "tippecanoe:sum:LABEL_X": -542.980765, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 17.352249, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 109.959432, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 10433887911, "tippecanoe:mean:scalerank": 2.3333333333333337, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.1111111111111111, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.2222222222222225, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 390342.3333333333, "tippecanoe:mean:POP_RANK": 9.11111111111111, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4842.333333333333, "tippecanoe:mean:GDP_YEAR": 2017.5555555555557, "tippecanoe:mean:WOE_ID": 23424868.444444445, "tippecanoe:mean:WOE_ID_EH": 23424868.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.666666666666666, "tippecanoe:mean:LONG_LEN": 13.444444444444445, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:mean:TINY": -30.444444444444444, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.555555555555555, "tippecanoe:mean:MAX_LABEL": 9.444444444444445, "tippecanoe:mean:LABEL_X": -60.33119611111111, "tippecanoe:mean:LABEL_Y": 12.217714666666668, "tippecanoe:mean:NE_ID": 1159320879, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216797, 21.779905 ], [ -46.142578, 18.895893 ], [ -44.121094, 7.710992 ], [ -53.701172, -0.175781 ], [ -64.335938, 3.864255 ], [ -65.742188, 14.519780 ], [ -57.216797, 21.779905 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80cffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.738281, -33.651208 ], [ -69.345703, -37.160317 ], [ -63.808594, -47.338823 ], [ -73.564453, -56.218923 ], [ -92.197266, -52.643063 ], [ -93.251953, -40.313043 ], [ -81.738281, -33.651208 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80ddfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 30, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.621094, -43.897892 ], [ -4.394531, -46.195042 ], [ 4.218750, -56.218923 ], [ -7.119141, -66.196009 ], [ -34.628906, -62.512318 ], [ -34.628906, -51.124213 ], [ -21.621094, -43.897892 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.119141, -8.928487 ], [ -131.308594, -9.882275 ], [ -125.332031, -19.145168 ], [ -129.814453, -29.075375 ], [ -142.822266, -29.305561 ], [ -148.798828, -18.229351 ], [ -142.119141, -8.928487 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8009fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 50, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 10285453, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 22558815, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 66, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 530883, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 1239665, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 106277162, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 129702162, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 41, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -388, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 20, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": -7.058429, "tippecanoe:sum:LABEL_X": 94.651842, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 58.724865, "tippecanoe:sum:LABEL_Y": 371.53556900000009, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 6955924804, "tippecanoe:mean:scalerank": 1.3333333333333333, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 3759802.5, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206610.83333333335, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 17712860.333333333, "tippecanoe:mean:WOE_ID_EH": 21617027, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.833333333333333, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.166666666666667, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 15.775307, "tippecanoe:mean:LABEL_Y": 61.92259483333334, "tippecanoe:mean:NE_ID": 1159320800.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 73.302624 ], [ 31.816406, 68.942607 ], [ 25.048828, 58.401712 ], [ 5.537109, 55.727110 ], [ -10.458984, 63.114638 ], [ 0.351562, 73.302624 ] ] ] } } +{ "type": "Feature", "id": 579451423930974207, "properties": { "bin": "80a9fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.767578, -12.382928 ], [ -39.814453, -16.804541 ], [ -37.529297, -27.916767 ], [ -47.724609, -34.307144 ], [ -59.501953, -29.916852 ], [ -61.171875, -19.228177 ], [ -51.767578, -12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "808ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 17373662, "tippecanoe:min:POP_EST": 17373662, "tippecanoe:sum:POP_EST": 17373662, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 107435, "tippecanoe:min:GDP_MD": 107435, "tippecanoe:sum:GDP_MD": 107435, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424801, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 23424801, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424801, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 23424801, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -78.188375, "tippecanoe:min:LABEL_X": -78.188375, "tippecanoe:sum:LABEL_X": -78.188375, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -1.259076, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": -1.259076, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320567, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 1159320567, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 17373662, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 107435, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424801, "tippecanoe:mean:WOE_ID_EH": 23424801, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -78.188375, "tippecanoe:mean:LABEL_Y": -1.259076, "tippecanoe:mean:NE_ID": 1159320567, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.814453, 2.547988 ], [ -73.564453, -2.811371 ], [ -72.246094, -15.029686 ], [ -82.880859, -22.268764 ], [ -94.570312, -16.720385 ], [ -95.097656, -4.390229 ], [ -84.814453, 2.547988 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80dffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 63894148, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 33, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 6054, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 728045, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 6050, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:sum:WOE_ID": 70274343, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:sum:WOE_ID_EH": 70274343, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 41, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 8.2, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:sum:LABEL_X": -195.23080400000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -123.261843, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 3477961535, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21298049.333333333, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 242681.66666666667, "tippecanoe:mean:GDP_YEAR": 2016.6666666666668, "tippecanoe:mean:WOE_ID": 23424781, "tippecanoe:mean:WOE_ID_EH": 23424781, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 13.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.733333333333333, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -65.07693466666668, "tippecanoe:mean:LABEL_Y": -41.087281, "tippecanoe:mean:NE_ID": 1159320511.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.251953, -45.274886 ], [ -34.628906, -51.124213 ], [ -34.628906, -62.512318 ], [ -62.226562, -66.196009 ], [ -73.564453, -56.218923 ], [ -63.808594, -47.338823 ], [ -48.251953, -45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8073fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.185547, 16.804541 ], [ 149.765625, 8.667918 ], [ 147.480469, -3.425692 ], [ 135.878906, -7.710992 ], [ 126.298828, 0.175781 ], [ 128.232422, 12.382928 ], [ 140.185547, 16.804541 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8025fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 56.218923 ], [ 116.191406, 47.338823 ], [ 110.654297, 37.160317 ], [ 98.261719, 33.651208 ], [ 86.748047, 40.313043 ], [ 87.802734, 52.643063 ], [ 106.435547, 56.218923 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8075fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 25716544, "tippecanoe:sum:POP_EST": 25716544, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 58539, "tippecanoe:sum:GDP_MD": 58539, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424854, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 23424854, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424854, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 23424854, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_X": -5.568618, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.49139, "tippecanoe:min:LABEL_Y": 7.49139, "tippecanoe:sum:LABEL_Y": 7.49139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320507, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 1159320507, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 25716544, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 58539, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854, "tippecanoe:mean:WOE_ID_EH": 23424854, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -5.568618, "tippecanoe:mean:LABEL_Y": 7.49139, "tippecanoe:mean:NE_ID": 1159320507, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.042969, 11.523088 ], [ 3.955078, 3.951941 ], [ -0.791016, -5.878332 ], [ -11.689453, -4.477856 ], [ -13.710938, 6.227934 ], [ -4.042969, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "803dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 16, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 30, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 763092, "tippecanoe:sum:POP_EST": 1590132963, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 61, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 2530, "tippecanoe:sum:GDP_MD": 14678645, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424911, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 93699221, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424911, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 93699221, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 106.337289, "tippecanoe:min:LABEL_X": 83.639914, "tippecanoe:sum:LABEL_X": 369.70246, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 32.498178, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 112.547744, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 4637282452, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.25, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 397533240.75, "tippecanoe:mean:POP_RANK": 15.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3669661.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424805.25, "tippecanoe:mean:WOE_ID_EH": 23424805.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 92.425615, "tippecanoe:mean:LABEL_Y": 28.136936, "tippecanoe:mean:NE_ID": 1159320613, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.748047, 40.313043 ], [ 98.261719, 33.651208 ], [ 97.119141, 22.268764 ], [ 85.429688, 16.720385 ], [ 74.970703, 22.431340 ], [ 73.564453, 33.724340 ], [ 86.748047, 40.313043 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8069fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.828125, 19.228177 ], [ 128.232422, 12.382928 ], [ 126.298828, 0.175781 ], [ 115.664062, -3.864255 ], [ 106.435547, 2.811371 ], [ 107.753906, 15.029686 ], [ 118.828125, 19.228177 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "802dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 16, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 16, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 16, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 53, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 55, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 16, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 227966087, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 196, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 32296, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2354758, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 32280, "tippecanoe:count:WOE_ID": 16, "tippecanoe:max:WOE_ID": 23424972, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 281097956, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:max:WOE_ID_EH": 23424995, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 327948125, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 132, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 138, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 68, "tippecanoe:count:TINY": 16, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1379, "tippecanoe:count:HOMEPART": 16, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -84, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.9, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 142.7, "tippecanoe:count:LABEL_X": 16, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 33.084182, "tippecanoe:sum:LABEL_X": 663.980747, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 552.20492, "tippecanoe:count:NE_ID": 16, "tippecanoe:max:NE_ID": 1159321309, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 18549133226, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.125, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 3.3125, "tippecanoe:mean:MAPCOLOR8": 2.8125, "tippecanoe:mean:MAPCOLOR9": 3.4375, "tippecanoe:mean:MAPCOLOR13": 0.125, "tippecanoe:mean:POP_EST": 14247880.4375, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 147172.375, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568622.25, "tippecanoe:mean:WOE_ID_EH": 20496757.8125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 8.625, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86.1875, "tippecanoe:mean:HOMEPART": -5.25, "tippecanoe:mean:MIN_ZOOM": 0.4375, "tippecanoe:mean:MIN_LABEL": 4.18125, "tippecanoe:mean:MAX_LABEL": 8.91875, "tippecanoe:mean:LABEL_X": 41.4987966875, "tippecanoe:mean:LABEL_Y": 34.5128075, "tippecanoe:mean:NE_ID": 1159320826.625, "tippecanoe:count": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 49.781264 ], [ 53.701172, 49.382373 ], [ 59.150391, 37.649034 ], [ 50.185547, 29.075375 ], [ 37.177734, 29.305561 ], [ 28.828125, 39.639538 ], [ 36.123047, 49.781264 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80f3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -148.183594, -68.942607 ], [ -117.685547, -69.380313 ], [ -85.869141, -76.163993 ], [ -34.453125, -87.364326 ], [ -214.716797, -81.268385 ], [ -179.648438, -73.302624 ], [ -148.183594, -68.942607 ] ] ], [ [ [ 211.816406, -68.942607 ], [ 242.314453, -69.380313 ], [ 274.130859, -76.163993 ], [ 325.546875, -87.364326 ], [ 145.283203, -81.268385 ], [ 180.351562, -73.302624 ], [ 211.816406, -68.942607 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "801ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 28, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 28, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 28, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 28, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 56, "tippecanoe:count:GEOU_DIF": 28, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 28, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 28, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 28, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 89, "tippecanoe:count:MAPCOLOR8": 28, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 97, "tippecanoe:count:MAPCOLOR9": 28, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 101, "tippecanoe:count:MAPCOLOR13": 28, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 196, "tippecanoe:count:POP_EST": 28, "tippecanoe:max:POP_EST": 83429615, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 437433879, "tippecanoe:count:POP_RANK": 28, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 361, "tippecanoe:count:POP_YEAR": 28, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 56532, "tippecanoe:count:GDP_MD": 28, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 5542, "tippecanoe:sum:GDP_MD": 10714600, "tippecanoe:count:GDP_YEAR": 28, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 56531, "tippecanoe:count:WOE_ID": 28, "tippecanoe:max:WOE_ID": 23424976, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 605691022, "tippecanoe:count:WOE_ID_EH": 28, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 655150221, "tippecanoe:count:ADM0_A3_UN": 28, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2772, "tippecanoe:count:ADM0_A3_WB": 28, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2772, "tippecanoe:count:NAME_LEN": 28, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 227, "tippecanoe:count:LONG_LEN": 28, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 240, "tippecanoe:count:ABBREV_LEN": 28, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 126, "tippecanoe:count:TINY": 28, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2563, "tippecanoe:count:HOMEPART": 28, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 28, "tippecanoe:count:MIN_ZOOM": 28, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 28, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 108.10000000000001, "tippecanoe:count:MAX_LABEL": 28, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 241.5, "tippecanoe:count:LABEL_X": 28, "tippecanoe:max:LABEL_X": 34.508268, "tippecanoe:min:LABEL_X": 4.800448, "tippecanoe:sum:LABEL_X": 520.222516, "tippecanoe:count:LABEL_Y": 28, "tippecanoe:max:LABEL_Y": 57.066872, "tippecanoe:min:LABEL_Y": 39.345388, "tippecanoe:sum:LABEL_Y": 1329.7201530000003, "tippecanoe:count:NE_ID": 28, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 32460984236, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.535714285714286, "tippecanoe:mean:ADM0_DIF": 0.03571428571428571, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1785714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4642857142857146, "tippecanoe:mean:MAPCOLOR9": 3.607142857142857, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15622638.535714286, "tippecanoe:mean:POP_RANK": 12.892857142857143, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 382664.28571428576, "tippecanoe:mean:GDP_YEAR": 2018.9642857142858, "tippecanoe:mean:WOE_ID": 21631822.214285714, "tippecanoe:mean:WOE_ID_EH": 23398222.17857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.107142857142858, "tippecanoe:mean:LONG_LEN": 8.571428571428572, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -91.53571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.860714285714286, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:mean:LABEL_X": 18.579375571428576, "tippecanoe:mean:LABEL_Y": 47.49000546428572, "tippecanoe:mean:NE_ID": 1159320865.5714286, "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, 58.401712 ], [ 36.123047, 49.781264 ], [ 28.828125, 39.639538 ], [ 13.271484, 37.509726 ], [ 2.021484, 45.213004 ], [ 5.537109, 55.727110 ], [ 25.048828, 58.401712 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8085fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.005859, 5.266008 ], [ 74.794922, -0.878872 ], [ 73.476562, -12.125264 ], [ 61.523438, -16.551962 ], [ 52.910156, -8.928487 ], [ 55.722656, 1.406109 ], [ 66.005859, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8021fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 43, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -64, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 322521745, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 99, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16136, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 554279, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16140, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549214, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044442, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 82, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 93, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 10, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 30.9, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 65, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 77.129553, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 555.3665579999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 315.427716, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568056, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 5.375, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 40315218.125, "tippecanoe:mean:POP_RANK": 12.375, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 69284.875, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568651.75, "tippecanoe:mean:WOE_ID_EH": 23005555.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.25, "tippecanoe:mean:LONG_LEN": 11.625, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:mean:MIN_LABEL": 3.8625, "tippecanoe:mean:MAX_LABEL": 8.125, "tippecanoe:mean:LABEL_X": 69.42081974999999, "tippecanoe:mean:LABEL_Y": 39.4284645, "tippecanoe:mean:NE_ID": 1159321007, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.291016, 58.309489 ], [ 87.802734, 52.643063 ], [ 86.748047, 40.313043 ], [ 73.564453, 33.724340 ], [ 59.150391, 37.649034 ], [ 53.701172, 49.382373 ], [ 68.291016, 58.309489 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "807bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58005463, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 110579436, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 63177, "tippecanoe:sum:GDP_MD": 158680, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424973, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 46849836, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424973, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 46849836, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 34.959183, "tippecanoe:sum:LABEL_X": 72.866815, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -5.502823, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321337, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 2318642308, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 55289718, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 79340, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424918, "tippecanoe:mean:WOE_ID_EH": 23424918, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:mean:LABEL_X": 36.4334075, "tippecanoe:mean:LABEL_Y": -2.7514115, "tippecanoe:mean:NE_ID": 1159321154, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.691406, 9.882275 ], [ 55.722656, 1.406109 ], [ 52.910156, -8.928487 ], [ 41.572266, -11.264612 ], [ 33.662109, -1.669686 ], [ 37.880859, 8.928487 ], [ 48.691406, 9.882275 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8053fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 39, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 73, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 168581128, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 18167, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 209852, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 565981, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 18157, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 163973731, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 163973731, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 65, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -790, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 11, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 35.2, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 77, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 51.143509, "tippecanoe:min:LABEL_X": 21.72568, "tippecanoe:sum:LABEL_X": 369.57640200000005, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 39.492763, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 173.215214, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 11004201935, "tippecanoe:mean:scalerank": 0.5555555555555556, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 2.5555555555555555, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 2.4444444444444448, "tippecanoe:mean:MAPCOLOR13": 8.11111111111111, "tippecanoe:mean:POP_EST": 18731236.444444445, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 62886.77777777778, "tippecanoe:mean:GDP_YEAR": 2017.4444444444444, "tippecanoe:mean:WOE_ID": 18219303.444444445, "tippecanoe:mean:WOE_ID_EH": 18219303.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.222222222222222, "tippecanoe:mean:LONG_LEN": 7.222222222222222, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 1.2222222222222224, "tippecanoe:mean:MIN_LABEL": 3.9111111111111116, "tippecanoe:mean:MAX_LABEL": 8.555555555555556, "tippecanoe:mean:LABEL_X": 41.06404466666667, "tippecanoe:mean:LABEL_Y": 19.24613488888889, "tippecanoe:mean:NE_ID": 1222689103.8888889, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 29.305561 ], [ 50.185547, 29.075375 ], [ 54.667969, 19.145168 ], [ 48.691406, 9.882275 ], [ 37.880859, 8.928487 ], [ 31.201172, 18.229351 ], [ 37.177734, 29.305561 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8059fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 277141352, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 573990, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424965, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 117124246, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424965, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 117124246, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 16.4, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 41.7, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 12.473488, "tippecanoe:min:LABEL_X": -1.036941, "tippecanoe:sum:LABEL_X": 22.349898, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 10.324775, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 40.874474000000009, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 5796604093, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6, "tippecanoe:mean:MAPCOLOR8": 2.4, "tippecanoe:mean:MAPCOLOR9": 2.4, "tippecanoe:mean:MAPCOLOR13": 5.2, "tippecanoe:mean:POP_EST": 55428270.4, "tippecanoe:mean:POP_RANK": 14.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 114798, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424849.2, "tippecanoe:mean:WOE_ID_EH": 23424849.2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.8, "tippecanoe:mean:LONG_LEN": 5.8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.28, "tippecanoe:mean:MAX_LABEL": 8.34, "tippecanoe:mean:LABEL_X": 4.4699796, "tippecanoe:mean:LABEL_Y": 8.1748948, "tippecanoe:mean:NE_ID": 1159320818.6, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.404297, 25.641526 ], [ 18.369141, 16.467695 ], [ 14.589844, 5.790897 ], [ 3.955078, 3.951941 ], [ -4.042969, 11.523088 ], [ -2.460938, 22.187405 ], [ 9.404297, 25.641526 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "803ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 187646861, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 303092, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 389095, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12113, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 121988700, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 145413742, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 49.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 35.291341, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 136.580237, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 143.04638999999998, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159320575, "tippecanoe:sum:NE_ID": 6955926156, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 31274476.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 64849.166666666664, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 20331450, "tippecanoe:mean:WOE_ID_EH": 24235623.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 1.1666666666666668, "tippecanoe:mean:MIN_LABEL": 3.1166666666666669, "tippecanoe:mean:MAX_LABEL": 8.200000000000001, "tippecanoe:mean:LABEL_X": 22.763372833333336, "tippecanoe:mean:LABEL_Y": 23.841064999999998, "tippecanoe:mean:NE_ID": 1159321026, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 37.177734, 29.305561 ], [ 31.201172, 18.229351 ], [ 18.369141, 16.467695 ], [ 9.404297, 25.641526 ], [ 13.271484, 37.509726 ], [ 28.828125, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8099fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.689453, -4.477856 ], [ -0.791016, -5.878332 ], [ 4.570312, -15.284185 ], [ -2.109375, -24.766785 ], [ -15.556641, -22.998852 ], [ -19.248047, -12.211180 ], [ -11.689453, -4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8043fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 73.564453, 33.724340 ], [ 74.970703, 22.431340 ], [ 65.742188, 16.130262 ], [ 54.667969, 19.145168 ], [ 50.185547, 29.075375 ], [ 59.150391, 37.649034 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8077fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 12.211180 ], [ 168.310547, 4.477856 ], [ 166.289062, -6.227934 ], [ 156.357422, -10.660608 ], [ 147.480469, -3.425692 ], [ 149.765625, 8.667918 ], [ 160.751953, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8031fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 77375259, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 1686739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424868, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 46849733, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424868, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 46849733, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 5.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 254.57402, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 36.384924, "tippecanoe:sum:LABEL_Y": 76.27017599999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642166, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 38687629.5, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 843369.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424866.5, "tippecanoe:mean:WOE_ID_EH": 23424866.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.75, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 127.28701, "tippecanoe:mean:LABEL_Y": 38.135087999999999, "tippecanoe:mean:NE_ID": 1159321083, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.191406, 47.338823 ], [ 131.748047, 45.274886 ], [ 132.275391, 34.307144 ], [ 120.498047, 29.916852 ], [ 110.654297, 37.160317 ], [ 116.191406, 47.338823 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8065fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 14, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 16486542, "tippecanoe:sum:POP_EST": 1506575298, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 3515651, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 93699347, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 93699347, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 20, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.4, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 104.50487, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 380.74066999999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 72.36803099999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 4637284198, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 376643824.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 878912.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424836.75, "tippecanoe:mean:WOE_ID_EH": 23424836.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.6, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 95.18516749999999, "tippecanoe:mean:LABEL_Y": 18.092007749999998, "tippecanoe:mean:NE_ID": 1159321049.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.119141, 22.268764 ], [ 107.753906, 15.029686 ], [ 106.435547, 2.811371 ], [ 95.185547, -2.547988 ], [ 84.902344, 4.390229 ], [ 85.429688, 16.720385 ], [ 97.119141, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "804bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 149833309, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 6208769, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 46849827, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 46849827, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 6.2, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 259.310374, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 59.794946, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 2318642272, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 74916654.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 3104384.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424913.5, "tippecanoe:mean:WOE_ID_EH": 23424913.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 129.655187, "tippecanoe:mean:LABEL_Y": 29.897473, "tippecanoe:mean:NE_ID": 1159321136, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.275391, 34.307144 ], [ 142.470703, 27.916767 ], [ 140.185547, 16.804541 ], [ 128.232422, 12.382928 ], [ 118.828125, 19.228177 ], [ 120.498047, 29.916852 ], [ 132.275391, 34.307144 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8019fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 20, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 62792, "tippecanoe:sum:POP_EST": 71923225, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 44, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3465, "tippecanoe:sum:GDP_MD": 3228762, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 8071, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699452, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 40, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 40, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 34.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -2.116346, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -17.006739, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 211.16583099999998, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320713, "tippecanoe:sum:NE_ID": 4637283026, "tippecanoe:mean:scalerank": 2.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.75, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 5.25, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 2.75, "tippecanoe:mean:POP_EST": 17980806.25, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 807190.5, "tippecanoe:mean:GDP_YEAR": 2017.75, "tippecanoe:mean:WOE_ID": 17568596.75, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.675, "tippecanoe:mean:LABEL_X": -4.25168475, "tippecanoe:mean:LABEL_Y": 52.79145774999999, "tippecanoe:mean:NE_ID": 1159320756.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.114638 ], [ 5.537109, 55.727110 ], [ 2.021484, 45.213004 ], [ -12.392578, 40.847060 ], [ -27.509766, 46.739861 ], [ -29.882812, 58.031372 ], [ -10.458984, 63.114638 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8041fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 111138961, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 645805, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 71715554, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 71715554, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 322.01897299999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 63.59606600000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 37046320.333333339, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 215268.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905184.666666669, "tippecanoe:mean:WOE_ID_EH": 23905184.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 7.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 107.33965766666666, "tippecanoe:mean:LABEL_Y": 21.19868866666667, "tippecanoe:mean:NE_ID": 1159320967, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 37.160317 ], [ 120.498047, 29.916852 ], [ 118.828125, 19.228177 ], [ 107.753906, 15.029686 ], [ 97.119141, 22.268764 ], [ 98.261719, 33.651208 ], [ 110.654297, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8083fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 16, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 35568916, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 49, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 117133, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 93699337, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 93699337, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 15, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 34, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 45.831388, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 2.333, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -9.316601, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 4637283090, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 8892229, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 29283.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.25, "tippecanoe:mean:WOE_ID_EH": 23424834.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 12.25, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 11.457847, "tippecanoe:mean:LABEL_Y": -2.32915025, "tippecanoe:mean:NE_ID": 1159320772.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.790897 ], [ 21.357422, -3.337954 ], [ 16.259766, -14.604847 ], [ 4.570312, -15.284185 ], [ -0.791016, -5.878332 ], [ 3.955078, 3.951941 ], [ 14.589844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "804ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.775391, 31.877558 ], [ 164.443359, 22.998852 ], [ 160.751953, 12.211180 ], [ 149.765625, 8.667918 ], [ 140.185547, 16.804541 ], [ 142.470703, 27.916767 ], [ 154.775391, 31.877558 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8067fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:min:POP_EST": 157538, "tippecanoe:sum:POP_EST": 139648054, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 94, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 907050, "tippecanoe:min:GDP_MD": 3101, "tippecanoe:sum:GDP_MD": 2022293, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 14128, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117124347, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424787, "tippecanoe:sum:WOE_ID_EH": 165099246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 29, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -590, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 24.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 59.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -85.069347, "tippecanoe:sum:LABEL_X": -439.40447900000006, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": 83.53883499999999, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320517, "tippecanoe:sum:NE_ID": 8115247543, "tippecanoe:mean:scalerank": 0.42857142857142857, "tippecanoe:mean:LABELRANK": 3.7142857142857146, "tippecanoe:mean:ADM0_DIF": 0.2857142857142857, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.857142857142857, "tippecanoe:mean:MAPCOLOR8": 2.857142857142857, "tippecanoe:mean:MAPCOLOR9": 2.7142857142857146, "tippecanoe:mean:MAPCOLOR13": 6.571428571428571, "tippecanoe:mean:POP_EST": 19949722, "tippecanoe:mean:POP_RANK": 13.428571428571429, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 288899, "tippecanoe:mean:GDP_YEAR": 2018.2857142857143, "tippecanoe:mean:WOE_ID": 16732049.57142857, "tippecanoe:mean:WOE_ID_EH": 23585606.57142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:mean:ABBREV_LEN": 4.142857142857143, "tippecanoe:mean:TINY": -84.28571428571429, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -62.77206842857144, "tippecanoe:mean:LABEL_Y": 11.934119285714285, "tippecanoe:mean:NE_ID": 1159321077.5714286, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025391, 19.394068 ], [ -65.742188, 14.519780 ], [ -64.335938, 3.864255 ], [ -73.564453, -2.811371 ], [ -84.814453, 2.547988 ], [ -85.605469, 13.838080 ], [ -76.025391, 19.394068 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80e1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.236328, -47.989922 ], [ 81.474609, -55.229023 ], [ 79.189453, -67.542167 ], [ 48.251953, -69.380313 ], [ 40.341797, -59.175928 ], [ 51.064453, -50.176898 ], [ 67.236328, -47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "808bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.335938, 3.864255 ], [ -53.701172, -0.175781 ], [ -51.767578, -12.382928 ], [ -61.171875, -19.228177 ], [ -72.246094, -15.029686 ], [ -73.564453, -2.811371 ], [ -64.335938, 3.864255 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80a3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 29085904, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 29327, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 70274563, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 70274563, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -95, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 147.58818300000002, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -50.655477000000008, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 3477962651, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 9695301.333333334, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9775.666666666666, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854.333333333, "tippecanoe:mean:WOE_ID_EH": 23424854.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 8.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -31.666666666666669, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 49.19606100000001, "tippecanoe:mean:LABEL_Y": -16.885159, "tippecanoe:mean:NE_ID": 1159320883.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, -8.928487 ], [ 61.523438, -16.551962 ], [ 58.623047, -28.690588 ], [ 45.878906, -31.278551 ], [ 37.265625, -22.917923 ], [ 41.572266, -11.264612 ], [ 52.910156, -8.928487 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8007fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.716797, 81.268385 ], [ 0.351562, 73.302624 ], [ -10.458984, 63.114638 ], [ -29.882812, 58.031372 ], [ -51.591797, 61.312452 ], [ -66.884766, 72.208678 ], [ -34.716797, 81.268385 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8097fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 95335558, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 23309, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 89058, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 12114, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 140549327, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 140549327, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 45, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 45, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 20.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 181.86301600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -86.337881, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 6955925882, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15889259.666666666, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14843, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887.833333333, "tippecanoe:mean:WOE_ID_EH": 23424887.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4166666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 30.310502666666669, "tippecanoe:mean:LABEL_Y": -14.389646833333332, "tippecanoe:mean:NE_ID": 1159320980.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -1.669686 ], [ 41.572266, -11.264612 ], [ 37.265625, -22.917923 ], [ 23.906250, -24.686952 ], [ 16.259766, -14.604847 ], [ 21.357422, -3.337954 ], [ 33.662109, -1.669686 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "809bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 22, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 26, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1322328, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 47, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 7124, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 12095, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 140549529, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 140549529, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 51, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -187, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 53, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": -675.010406, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:sum:LABEL_Y": -84.18719800000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 6955926130, "tippecanoe:mean:scalerank": 3.6666666666666667, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.166666666666667, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 7.166666666666667, "tippecanoe:mean:POP_EST": 220388, "tippecanoe:mean:POP_RANK": 7.833333333333333, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 1187.3333333333333, "tippecanoe:mean:GDP_YEAR": 2015.8333333333333, "tippecanoe:mean:WOE_ID": 23424921.5, "tippecanoe:mean:WOE_ID_EH": 23424921.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -31.166666666666669, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.9499999999999999, "tippecanoe:mean:MAX_LABEL": 8.833333333333334, "tippecanoe:mean:LABEL_X": -112.50173433333333, "tippecanoe:mean:LABEL_Y": -14.031199666666668, "tippecanoe:mean:NE_ID": 1159321021.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.044922, -3.951941 ], [ -165.410156, -5.790897 ], [ -161.630859, -16.467695 ], [ -170.595703, -25.641526 ], [ -182.460938, -22.187405 ], [ -184.042969, -11.523088 ], [ -176.044922, -3.951941 ] ] ], [ [ [ 183.955078, -3.951941 ], [ 194.589844, -5.790897 ], [ 198.369141, -16.467695 ], [ 189.404297, -25.641526 ], [ 177.539062, -22.187405 ], [ 175.957031, -11.523088 ], [ 183.955078, -3.951941 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80bdfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, -22.917923 ], [ 45.878906, -31.278551 ], [ 41.572266, -41.442726 ], [ 26.982422, -43.452919 ], [ 18.369141, -35.029996 ], [ 23.906250, -24.686952 ], [ 37.265625, -22.917923 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8081fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 7.710992 ], [ -32.519531, 3.425692 ], [ -30.234375, -8.667918 ], [ -39.814453, -16.804541 ], [ -51.767578, -12.382928 ], [ -53.701172, -0.175781 ], [ -44.121094, 7.710992 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80d7fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 58558270, "tippecanoe:sum:POP_EST": 58558270, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 351431, "tippecanoe:sum:GDP_MD": 351431, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424942, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 23424942, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424942, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 23424942, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 23.665734, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 23.665734, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -29.708776, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -29.708776, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 1159321431, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 58558270, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 351431, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424942, "tippecanoe:mean:WOE_ID_EH": 23424942, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 23.665734, "tippecanoe:mean:LABEL_Y": -29.708776, "tippecanoe:mean:NE_ID": 1159321431, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.572266, -41.442726 ], [ 51.064453, -50.176898 ], [ 40.341797, -59.175928 ], [ 22.675781, -54.007769 ], [ 26.982422, -43.452919 ], [ 41.572266, -41.442726 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "806dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 6453553, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 11501114, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 27022, "tippecanoe:sum:GDP_MD": 88823, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424807, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 46849598, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424807, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 46849598, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -172.96804600000002, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 13.685371, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 23.750470999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 2318641778, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 5750557, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44411.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424799, "tippecanoe:mean:WOE_ID_EH": 23424799, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -86.48402300000001, "tippecanoe:mean:LABEL_Y": 11.875235499999999, "tippecanoe:mean:NE_ID": 1159320889, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.064453, 19.228177 ], [ -85.605469, 13.838080 ], [ -84.814453, 2.547988 ], [ -95.097656, -4.390229 ], [ -105.205078, 0.878872 ], [ -106.523438, 12.125264 ], [ -96.064453, 19.228177 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.480469, -3.425692 ], [ 156.357422, -10.660608 ], [ 155.390625, -22.024546 ], [ 142.822266, -26.667096 ], [ 133.857422, -18.895893 ], [ 135.878906, -7.710992 ], [ 147.480469, -3.425692 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8061fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 22333953, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 89650, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 46849677, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 46849677, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 154.212377, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 11.755538, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 2318642078, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 2.5, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 11166976.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44825, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 77.1061885, "tippecanoe:mean:LABEL_Y": 5.877769, "tippecanoe:mean:NE_ID": 1159321039, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 22.431340 ], [ 85.429688, 16.720385 ], [ 84.902344, 4.390229 ], [ 74.794922, -0.878872 ], [ 66.005859, 5.266008 ], [ 65.742188, 16.130262 ], [ 74.970703, 22.431340 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "809ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 1257505, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 13293, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 6054, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 70274576, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 70274576, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11.6, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 166.908762, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 491.163234, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -44.465775, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 3477963311, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 419168.3333333333, "tippecanoe:mean:POP_RANK": 10.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4431, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424858.666666669, "tippecanoe:mean:WOE_ID_EH": 23424858.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.333333333333334, "tippecanoe:mean:LONG_LEN": 11.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.8666666666666669, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 163.721078, "tippecanoe:mean:LABEL_Y": -14.821925, "tippecanoe:mean:NE_ID": 1159321103.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.289062, -6.227934 ], [ 175.957031, -11.523088 ], [ 177.539062, -22.187405 ], [ 167.080078, -28.536275 ], [ 155.390625, -22.024546 ], [ 156.357422, -10.660608 ], [ 166.289062, -6.227934 ] ] ] } } ] } ] } diff --git a/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json b/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json index 635d5f57..4598fd67 100644 --- a/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json +++ b/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json @@ -1,66 +1,84 @@ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "bin": "820197fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 27, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 23, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 106631, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 276430, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 35, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 3855, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 6622, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 10075, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 149741898, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 149741898, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 18, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 91, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 20, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -395, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 25, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -61.790612, "tippecanoe:min:LABEL_X": -64.779172, "tippecanoe:sum:LABEL_X": -316.44404499999998, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 18.426606, "tippecanoe:min:LABEL_Y": 16.73717, "tippecanoe:sum:LABEL_Y": 88.344033, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 5796603821, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.8, "tippecanoe:mean:MAPCOLOR9": 5.4, "tippecanoe:mean:MAPCOLOR13": 4.6, "tippecanoe:mean:POP_EST": 55286, "tippecanoe:mean:POP_RANK": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1324.4, "tippecanoe:mean:GDP_YEAR": 2015, "tippecanoe:mean:WOE_ID": 29948379.6, "tippecanoe:mean:WOE_ID_EH": 29948379.6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.8, "tippecanoe:mean:LONG_LEN": 18.2, "tippecanoe:mean:ABBREV_LEN": 7.8, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -79, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.8, "tippecanoe:mean:LABEL_X": -63.28880899999999, "tippecanoe:mean:LABEL_Y": 17.6688066, "tippecanoe:mean:NE_ID": 1159320764.2, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 72.369105 ], [ 63.500977, 72.087432 ], [ 65.302734, 70.539543 ], [ 62.358398, 69.395783 ], [ 57.832031, 69.672358 ], [ 55.546875, 71.102543 ], [ 58.227539, 72.369105 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82106ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 36, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 22, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 71808, "tippecanoe:sum:POP_EST": 3411314, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 70, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 582, "tippecanoe:sum:GDP_MD": 41876, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424754, "tippecanoe:sum:WOE_ID": 163974191, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 163974191, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 78, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 92, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 35, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -284, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 31, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 65.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -61.344958, "tippecanoe:sum:LABEL_X": -419.001901, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 15.458829, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 75.87001300000002, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320449, "tippecanoe:sum:NE_ID": 8115246839, "tippecanoe:mean:scalerank": 2.142857142857143, "tippecanoe:mean:LABELRANK": 5.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.142857142857143, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6.428571428571429, "tippecanoe:mean:POP_EST": 487330.5714285714, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5982.285714285715, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.42857143, "tippecanoe:mean:WOE_ID_EH": 23424884.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.142857142857143, "tippecanoe:mean:LONG_LEN": 13.142857142857143, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -40.57142857142857, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.428571428571429, "tippecanoe:mean:MAX_LABEL": 9.357142857142858, "tippecanoe:mean:LABEL_X": -59.857414428571427, "tippecanoe:mean:LABEL_Y": 10.838573285714288, "tippecanoe:mean:NE_ID": 1159320977, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.832031, 69.672358 ], [ 62.358398, 69.395783 ], [ 63.457031, 67.925140 ], [ 60.424805, 66.757250 ], [ 56.293945, 67.016009 ], [ 54.843750, 68.447662 ], [ 57.832031, 69.672358 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82176ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 2, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 299882, "tippecanoe:sum:POP_EST": 1189835, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 21, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 6430, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 46849720, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 46849720, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": 166.908762, "tippecanoe:sum:LABEL_X": 344.884189, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -15.37153, "tippecanoe:min:LABEL_Y": -17.826099, "tippecanoe:sum:LABEL_Y": -33.197629, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 2318642046, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 594917.5, "tippecanoe:mean:POP_RANK": 10.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3215, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424860, "tippecanoe:mean:WOE_ID_EH": 23424860, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 172.4420945, "tippecanoe:mean:LABEL_Y": -16.5988145, "tippecanoe:mean:NE_ID": 1159321023, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.165039, 64.774125 ], [ 180.878906, 63.292939 ], [ 178.857422, 61.876870 ], [ 175.209961, 61.835413 ], [ 173.232422, 63.233627 ], [ 175.078125, 64.755390 ], [ 179.165039, 64.774125 ] ] ], [ [ [ -180.834961, 64.774125 ], [ -179.121094, 63.292939 ], [ -181.142578, 61.876870 ], [ -184.790039, 61.835413 ], [ -186.767578, 63.233627 ], [ -184.921875, 64.755390 ], [ -180.834961, 64.774125 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8201b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 10, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 10, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 52, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 5, "tippecanoe:count:LEVEL": 10, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 33, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 37, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 10, "tippecanoe:max:POP_EST": 28515829, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 57315996, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 20189, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 482359, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 730711, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 20164, "tippecanoe:count:WOE_ID": 10, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 187398728, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 211948628, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 109, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 130, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:TINY": 10, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -786, "tippecanoe:count:HOMEPART": 10, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -490, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 43, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 92.5, "tippecanoe:count:LABEL_X": 10, "tippecanoe:max:LABEL_X": -64.599381, "tippecanoe:min:LABEL_X": -81.24055, "tippecanoe:sum:LABEL_X": -725.4550589999999, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 7.182476, "tippecanoe:sum:LABEL_Y": 181.523907, "tippecanoe:count:NE_ID": 10, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 11593208594, "tippecanoe:mean:scalerank": 1.6, "tippecanoe:mean:LABELRANK": 5.2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.3, "tippecanoe:mean:MAPCOLOR8": 3.3, "tippecanoe:mean:MAPCOLOR9": 3.7, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 5731599.6, "tippecanoe:mean:POP_RANK": 10.6, "tippecanoe:mean:POP_YEAR": 2018.9, "tippecanoe:mean:GDP_MD": 73071.1, "tippecanoe:mean:GDP_YEAR": 2016.4, "tippecanoe:mean:WOE_ID": 18739872.8, "tippecanoe:mean:WOE_ID_EH": 21194862.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.9, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 5.8, "tippecanoe:mean:TINY": -78.6, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0.5, "tippecanoe:mean:MIN_LABEL": 4.3, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": -72.5455059, "tippecanoe:mean:LABEL_Y": 18.1523907, "tippecanoe:mean:NE_ID": 1159320859.4, "tippecanoe:count": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 71.173578 ], [ 55.546875, 71.102543 ], [ 57.832031, 69.672358 ], [ 54.843750, 68.447662 ], [ 50.537109, 68.528235 ], [ 48.735352, 69.854762 ], [ 50.625000, 71.173578 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82165ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 13, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 29, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 477768206, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 14132, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 60, "tippecanoe:sum:GDP_MD": 23341694, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14124, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 23424867, "tippecanoe:sum:WOE_ID": 168839058, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 23424867, "tippecanoe:sum:WOE_ID_EH": 168839058, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 85, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -388, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.099999999999999, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 54.60000000000001, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": -354.80870500000006, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -55.49038999999999, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 8115246989, "tippecanoe:mean:scalerank": 1.8571428571428573, "tippecanoe:mean:LABELRANK": 3.4285714285714286, "tippecanoe:mean:ADM0_DIF": 0.42857142857142857, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.857142857142857, "tippecanoe:mean:MAPCOLOR8": 4.428571428571429, "tippecanoe:mean:MAPCOLOR9": 4.142857142857143, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 68252600.85714285, "tippecanoe:mean:POP_RANK": 10.571428571428572, "tippecanoe:mean:POP_YEAR": 2018.857142857143, "tippecanoe:mean:GDP_MD": 3334527.714285714, "tippecanoe:mean:GDP_YEAR": 2017.7142857142858, "tippecanoe:mean:WOE_ID": 24119865.42857143, "tippecanoe:mean:WOE_ID_EH": 24119865.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12.142857142857143, "tippecanoe:mean:LONG_LEN": 12.857142857142858, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -55.42857142857143, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3, "tippecanoe:mean:MAX_LABEL": 7.800000000000002, "tippecanoe:mean:LABEL_X": -50.686957857142868, "tippecanoe:mean:LABEL_Y": -7.92719857142857, "tippecanoe:mean:NE_ID": 1159320998.4285715, "tippecanoe:count": 7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, 53.540307 ], [ 180.219727, 52.133488 ], [ 178.989258, 50.708634 ], [ 176.308594, 50.652943 ], [ 174.726562, 51.998410 ], [ 175.869141, 53.488046 ], [ 178.681641, 53.540307 ] ] ], [ [ [ -181.318359, 53.540307 ], [ -179.780273, 52.133488 ], [ -181.010742, 50.708634 ], [ -183.691406, 50.652943 ], [ -185.273438, 51.998410 ], [ -184.130859, 53.488046 ], [ -181.318359, 53.540307 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820187fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.790039, 73.898111 ], [ 55.590820, 73.849286 ], [ 58.227539, 72.369105 ], [ 55.546875, 71.102543 ], [ 50.625000, 71.173578 ], [ 47.636719, 72.501722 ], [ 49.790039, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821047fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 67.016009 ], [ 60.424805, 66.757250 ], [ 61.523438, 65.256706 ], [ 58.798828, 64.033744 ], [ 55.019531, 64.263684 ], [ 53.657227, 65.730626 ], [ 56.293945, 67.016009 ] ] ] } } , { "type": "Feature", "properties": { "bin": "82008ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.892578, 81.634149 ], [ 89.560547, 80.739423 ], [ 88.725586, 78.988187 ], [ 81.210938, 78.143526 ], [ 73.388672, 78.853070 ], [ 71.367188, 80.553733 ], [ 79.892578, 81.634149 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 37861934, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 46639, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424943, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 117124424, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424943, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 117124424, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 46, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 22, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 44, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -9.740299, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -64.057735, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 10.618516, "tippecanoe:sum:LABEL_Y": 71.149136, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321243, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 5796604709, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.2, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 7572386.8, "tippecanoe:mean:POP_RANK": 12.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9327.8, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.8, "tippecanoe:mean:WOE_ID_EH": 23424884.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.4, "tippecanoe:mean:LONG_LEN": 9.2, "tippecanoe:mean:ABBREV_LEN": 4.4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7399999999999999, "tippecanoe:mean:MAX_LABEL": 8.8, "tippecanoe:mean:LABEL_X": -12.811547, "tippecanoe:mean:LABEL_Y": 14.229827199999999, "tippecanoe:mean:NE_ID": 1159320941.8, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.441406, 71.286699 ], [ 86.835938, 70.363091 ], [ 86.660156, 68.688521 ], [ 82.749023, 67.958148 ], [ 78.750000, 68.768235 ], [ 78.222656, 70.407348 ], [ 82.441406, 71.286699 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8204cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.353516, 69.209404 ], [ 174.946289, 67.742759 ], [ 172.880859, 66.196009 ], [ 168.530273, 66.000150 ], [ 165.761719, 67.339861 ], [ 167.431641, 69.005675 ], [ 172.353516, 69.209404 ] ] ] } } , { "type": "Feature", "properties": { "bin": "82114ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 24, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 9746117, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 27792733, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 52, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 12520, "tippecanoe:sum:GDP_MD": 126438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424915, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 93699354, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424915, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 93699354, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 38, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 38, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 16, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 36.5, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -344.924997, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 14.794801, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 51.215969, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 4637283696, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.75, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 6948183.25, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 31609.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 9.5, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9.125, "tippecanoe:mean:LABEL_X": -86.23124925, "tippecanoe:mean:LABEL_Y": 12.80399225, "tippecanoe:mean:NE_ID": 1159320924, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.735352, 69.854762 ], [ 50.537109, 68.528235 ], [ 48.076172, 67.187000 ], [ 44.077148, 67.118748 ], [ 42.099609, 68.382996 ], [ 44.252930, 69.778952 ], [ 48.735352, 69.854762 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820b47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.564453, 71.102543 ], [ 78.222656, 70.407348 ], [ 78.750000, 68.768235 ], [ 75.234375, 67.875541 ], [ 71.103516, 68.496040 ], [ 69.960938, 70.080562 ], [ 73.564453, 71.102543 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 52573973, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 95503, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424863, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 37.907632, "tippecanoe:mean:LABEL_Y": 0.549043, "tippecanoe:mean:NE_ID": 1159320971, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.093750, 67.776025 ], [ 115.751953, 67.759398 ], [ 117.817383, 66.196009 ], [ 115.576172, 64.774125 ], [ 111.533203, 64.792848 ], [ 109.160156, 66.231457 ], [ 111.093750, 67.776025 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8201a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 5, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 17, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 390353, "tippecanoe:sum:POP_EST": 28327862, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 178612, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 6056, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424834, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424834, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 70274387, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -194, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -77.975855, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -257.185951, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.982133, "tippecanoe:sum:LABEL_Y": 53.518225, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320815, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 3477961773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.6666666666666668, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.666666666666667, "tippecanoe:mean:POP_EST": 9442620.666666666, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 59537.333333333336, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424795.666666669, "tippecanoe:mean:WOE_ID_EH": 23424795.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.333333333333333, "tippecanoe:mean:LONG_LEN": 6.333333333333333, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -85.72865033333334, "tippecanoe:mean:LABEL_Y": 17.839408333333336, "tippecanoe:mean:NE_ID": 1159320591, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.636719, 72.501722 ], [ 50.625000, 71.173578 ], [ 48.735352, 69.854762 ], [ 44.252930, 69.778952 ], [ 41.088867, 70.959697 ], [ 42.451172, 72.369105 ], [ 47.636719, 72.501722 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82009ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 31, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 83455958, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 65, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3116, "tippecanoe:sum:GDP_MD": 3764975, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117123960, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424757, "tippecanoe:sum:WOE_ID_EH": 140549025, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 57, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 61, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -294, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 52.7, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 4.800448, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -19.26472, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 62.185604, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 324.136827, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320389, "tippecanoe:sum:NE_ID": 6955923964, "tippecanoe:mean:scalerank": 2.6666666666666667, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.166666666666667, "tippecanoe:mean:POP_EST": 13909326.333333334, "tippecanoe:mean:POP_RANK": 10.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 627495.8333333334, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 19520660, "tippecanoe:mean:WOE_ID_EH": 23424837.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.166666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.783333333333333, "tippecanoe:mean:MAX_LABEL": 8.783333333333334, "tippecanoe:mean:LABEL_X": -3.210786666666667, "tippecanoe:mean:LABEL_Y": 54.0228045, "tippecanoe:mean:NE_ID": 1159320660.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.725586, 78.988187 ], [ 95.537109, 77.888038 ], [ 94.130859, 76.163993 ], [ 87.714844, 75.497157 ], [ 81.650391, 76.413973 ], [ 81.210938, 78.143526 ], [ 88.725586, 78.988187 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8200a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.677734, 78.025574 ], [ 67.500000, 77.702234 ], [ 69.565430, 76.047916 ], [ 65.126953, 74.867889 ], [ 58.798828, 75.163300 ], [ 55.634766, 76.669656 ], [ 59.677734, 78.025574 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820aeffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 28, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 11062113, "tippecanoe:sum:POP_EST": 212754687, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 75, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 63177, "tippecanoe:min:GDP_MD": 10354, "tippecanoe:sum:GDP_MD": 171094, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 10091, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 93699565, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 93699565, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 14, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 39, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 34.959183, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 151.860612, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -0.6041630000000007, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320513, "tippecanoe:sum:NE_ID": 5796605647, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8, "tippecanoe:mean:MAPCOLOR8": 3.6, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 5.6, "tippecanoe:mean:POP_EST": 42550937.4, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 34218.8, "tippecanoe:mean:GDP_YEAR": 2018.2, "tippecanoe:mean:WOE_ID": 18739913, "tippecanoe:mean:WOE_ID_EH": 18739913, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.6, "tippecanoe:mean:LONG_LEN": 12.6, "tippecanoe:mean:ABBREV_LEN": 5.2, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.8, "tippecanoe:mean:MAX_LABEL": 7.8, "tippecanoe:mean:LABEL_X": 30.372122400000003, "tippecanoe:mean:LABEL_Y": -0.12083260000000014, "tippecanoe:mean:NE_ID": 1159321129.4, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.413086, 69.224997 ], [ 111.093750, 67.776025 ], [ 109.160156, 66.231457 ], [ 104.941406, 66.071546 ], [ 102.128906, 67.407487 ], [ 103.579102, 69.021414 ], [ 108.413086, 69.224997 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820837fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 197097, "tippecanoe:sum:POP_EST": 197097, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 852, "tippecanoe:sum:GDP_MD": 852, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID": 23424992, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424992, "tippecanoe:sum:WOE_ID_EH": 23424992, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -172.438241, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -172.438241, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -13.639139, "tippecanoe:sum:LABEL_Y": -13.639139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321423, "tippecanoe:sum:NE_ID": 1159321423, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 197097, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 852, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424992, "tippecanoe:mean:WOE_ID_EH": 23424992, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -172.438241, "tippecanoe:mean:LABEL_Y": -13.639139, "tippecanoe:mean:NE_ID": 1159321423, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.646484, 64.661517 ], [ 9.711914, 63.528971 ], [ 8.920898, 62.308794 ], [ 6.152344, 62.206512 ], [ 3.999023, 63.332413 ], [ 4.702148, 64.567319 ], [ 7.646484, 64.661517 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 31825295, "tippecanoe:sum:POP_EST": 31825295, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 88815, "tippecanoe:sum:GDP_MD": 88815, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424745, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 23424745, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424745, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 23424745, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_X": 17.984249, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.182762, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -12.182762, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320323, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 1159320323, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 31825295, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 88815, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424745, "tippecanoe:mean:WOE_ID_EH": 23424745, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 17.984249, "tippecanoe:mean:LABEL_Y": -12.182762, "tippecanoe:mean:NE_ID": 1159320323, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 67.407487 ], [ 104.941406, 66.071546 ], [ 103.579102, 64.510643 ], [ 99.755859, 64.225493 ], [ 96.899414, 65.440002 ], [ 97.866211, 67.050304 ], [ 102.128906, 67.407487 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8209affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1620, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1620, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 3, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 3, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 2018, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 10, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2003, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 2003, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424904, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 23424904, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424904, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 23424904, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 4, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_X": -169.862565, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -19.045956, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -19.045956, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321133, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 1159321133, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 1620, "tippecanoe:mean:POP_RANK": 3, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 10, "tippecanoe:mean:GDP_YEAR": 2003, "tippecanoe:mean:WOE_ID": 23424904, "tippecanoe:mean:WOE_ID_EH": 23424904, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -169.862565, "tippecanoe:mean:LABEL_Y": -19.045956, "tippecanoe:mean:NE_ID": 1159321133, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.999023, 63.332413 ], [ 6.152344, 62.206512 ], [ 5.493164, 60.930432 ], [ 2.768555, 60.737686 ], [ 0.527344, 61.835413 ], [ 1.098633, 63.134503 ], [ 3.999023, 63.332413 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820527fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.063477, 81.334844 ], [ 107.094727, 79.997168 ], [ 103.754883, 78.331648 ], [ 95.537109, 77.888038 ], [ 88.725586, 78.988187 ], [ 89.560547, 80.739423 ], [ 100.063477, 81.334844 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82088ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 63.470145 ], [ 24.521484, 62.471724 ], [ 23.818359, 60.973107 ], [ 21.269531, 60.457218 ], [ 19.291992, 61.417750 ], [ 19.731445, 62.915233 ], [ 22.412109, 63.470145 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 97.866211, 67.050304 ], [ 96.899414, 65.440002 ], [ 93.120117, 64.979359 ], [ 89.956055, 66.053716 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8210effffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.897461, 62.492028 ], [ 63.457031, 62.124436 ], [ 64.291992, 60.500525 ], [ 61.787109, 59.288332 ], [ 58.491211, 59.645540 ], [ 57.436523, 61.206798 ], [ 59.897461, 62.492028 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:min:POP_EST": 603253, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.363281, 73.775780 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 86.835938, 70.363091 ], [ 82.441406, 71.286699 ], [ 82.221680, 72.971189 ], [ 87.363281, 73.775780 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82109ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.635742, 52.616390 ], [ 54.448242, 52.375599 ], [ 55.371094, 50.736455 ], [ 53.657227, 49.382373 ], [ 51.064453, 49.610710 ], [ 50.009766, 51.206883 ], [ 51.635742, 52.616390 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 19, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 4937374, "tippecanoe:sum:POP_EST": 38467133, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 40, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 3070, "tippecanoe:sum:GDP_MD": 65730, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 70274676, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 70274676, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 32, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 10.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -11.763677, "tippecanoe:sum:LABEL_X": -26.792673999999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.617449, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 22.556016, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 3477962773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 12822377.666666666, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21910, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892, "tippecanoe:mean:WOE_ID_EH": 23424892, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -8.930891333333334, "tippecanoe:mean:LABEL_Y": 7.518672, "tippecanoe:mean:NE_ID": 1159320924.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.660156, 68.688521 ], [ 90.351562, 67.676085 ], [ 89.956055, 66.053716 ], [ 86.352539, 65.421730 ], [ 82.880859, 66.319861 ], [ 82.749023, 67.958148 ], [ 86.660156, 68.688521 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "822107fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 3398, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2012, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 2012, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 23424814, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 23424814, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 27, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -58.738602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -51.608913, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 1159320711, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 3398, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 282, "tippecanoe:mean:GDP_YEAR": 2012, "tippecanoe:mean:WOE_ID": 23424814, "tippecanoe:mean:WOE_ID_EH": 23424814, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 27, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -58.738602, "tippecanoe:mean:LABEL_Y": -51.608913, "tippecanoe:mean:NE_ID": 1159320711, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.985352, 51.727028 ], [ 62.753906, 51.289406 ], [ 63.413086, 49.582226 ], [ 61.479492, 48.312428 ], [ 58.886719, 48.719961 ], [ 58.095703, 50.429518 ], [ 59.985352, 51.727028 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82156ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 530953, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 530953, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5642, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 5642, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID": 23424899, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424899, "tippecanoe:sum:WOE_ID_EH": 23424899, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.507554, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 73.507554, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 4.174441, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 4.174441, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321053, "tippecanoe:sum:NE_ID": 1159321053, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 530953, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5642, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424899, "tippecanoe:mean:WOE_ID_EH": 23424899, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 73.507554, "tippecanoe:mean:LABEL_Y": 4.174441, "tippecanoe:mean:NE_ID": 1159321053, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.936523, 67.356785 ], [ 129.375000, 66.947274 ], [ 130.517578, 65.256706 ], [ 127.617188, 64.014496 ], [ 123.662109, 64.377941 ], [ 122.124023, 66.000150 ], [ 124.936523, 67.356785 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a27fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.880859, 66.319861 ], [ 86.352539, 65.421730 ], [ 86.132812, 63.801894 ], [ 82.836914, 63.094758 ], [ 79.497070, 63.937372 ], [ 79.321289, 65.549367 ], [ 82.880859, 66.319861 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8204d7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 68.155209 ], [ 161.279297, 66.947274 ], [ 160.180664, 65.238307 ], [ 156.181641, 64.699105 ], [ 152.885742, 65.784758 ], [ 153.457031, 67.542167 ], [ 157.939453, 68.155209 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 64, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 41, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 48, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 199230168, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6218276, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317100831, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317100831, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 97, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 112, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 49.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 118.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 283.356465, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 730.183153, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:sum:NE_ID": 16230491272, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.571428571428571, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.9285714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4285714285714286, "tippecanoe:mean:MAPCOLOR9": 3.2142857142857146, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 14230726.285714286, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 444162.5714285714, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650059.35714286, "tippecanoe:mean:WOE_ID_EH": 22650059.35714286, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.928571428571429, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5142857142857149, "tippecanoe:mean:MAX_LABEL": 8.47857142857143, "tippecanoe:mean:LABEL_X": 20.2397475, "tippecanoe:mean:LABEL_Y": 52.155939499999998, "tippecanoe:mean:NE_ID": 1159320805.142857, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.754883, 78.331648 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 103.754883, 78.331648 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 41, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 32, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 33, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 60297396, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 129744004, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 2003576, "tippecanoe:min:GDP_MD": 3154, "tippecanoe:sum:GDP_MD": 3072017, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 18170, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424967, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 210823727, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424967, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 210823727, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 84, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 41, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -578, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 36.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.8, "tippecanoe:sum:MAX_LABEL": 77.8, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 18.06841, "tippecanoe:min:LABEL_X": 1.539409, "tippecanoe:sum:LABEL_X": 80.51718399999999, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 49.733732, "tippecanoe:min:LABEL_Y": 27.397406, "tippecanoe:sum:LABEL_Y": 382.08085600000006, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 10433887383, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.555555555555555, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5555555555555555, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 14416000.444444444, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 341335.22222222227, "tippecanoe:mean:GDP_YEAR": 2018.888888888889, "tippecanoe:mean:WOE_ID": 23424858.555555557, "tippecanoe:mean:WOE_ID_EH": 23424858.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.333333333333334, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.555555555555555, "tippecanoe:mean:TINY": -64.22222222222223, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.077777777777778, "tippecanoe:mean:MAX_LABEL": 8.644444444444444, "tippecanoe:mean:LABEL_X": 8.946353777777777, "tippecanoe:mean:LABEL_Y": 42.45342844444445, "tippecanoe:mean:NE_ID": 1159320820.3333333, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 76.163993 ], [ 99.272461, 74.959392 ], [ 97.734375, 73.264704 ], [ 92.197266, 72.724958 ], [ 87.363281, 73.775780 ], [ 87.714844, 75.497157 ], [ 94.130859, 76.163993 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 5703569, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 372062, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 103.816925, "tippecanoe:mean:LABEL_Y": 1.366587, "tippecanoe:mean:NE_ID": 1159321247, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.064453, 68.576441 ], [ 145.327148, 67.742759 ], [ 145.327148, 65.982270 ], [ 141.679688, 65.053602 ], [ 137.812500, 65.784758 ], [ 137.197266, 67.542167 ], [ 141.064453, 68.576441 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82048ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.589844, 68.576441 ], [ 153.457031, 67.542167 ], [ 152.885742, 65.784758 ], [ 148.974609, 65.053602 ], [ 145.327148, 65.982270 ], [ 145.327148, 67.742759 ], [ 149.589844, 68.576441 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.128906, 67.407487 ], [ 97.866211, 67.050304 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82104ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.457031, 67.925140 ], [ 67.675781, 67.491751 ], [ 68.422852, 65.946472 ], [ 65.390625, 64.848937 ], [ 61.523438, 65.256706 ], [ 60.424805, 66.757250 ], [ 63.457031, 67.925140 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821067fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 32510453, "tippecanoe:min:POP_EST": 4246439, "tippecanoe:sum:POP_EST": 54130554, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 41, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 226848, "tippecanoe:min:GDP_MD": 66800, "tippecanoe:sum:GDP_MD": 401083, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 70274644, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 70274644, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -72.90016, "tippecanoe:min:LABEL_X": -80.352106, "tippecanoe:sum:LABEL_X": -231.440641, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.72198, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": -5.513775000000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321163, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 3477962891, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 18043518, "tippecanoe:mean:POP_RANK": 13.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 133694.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424881.333333333, "tippecanoe:mean:WOE_ID_EH": 23424881.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.666666666666667, "tippecanoe:mean:LONG_LEN": 5.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -77.14688033333333, "tippecanoe:mean:LABEL_Y": -1.8379250000000003, "tippecanoe:mean:NE_ID": 1159320963.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 68.528235 ], [ 54.843750, 68.447662 ], [ 56.293945, 67.016009 ], [ 53.657227, 65.730626 ], [ 49.746094, 65.820782 ], [ 48.076172, 67.187000 ], [ 50.537109, 68.528235 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8205affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 26, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 32, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 309943904, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 93, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 14123, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 413360, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14126, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549348, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 160619615, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 80, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -589, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 56.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 74.532637, "tippecanoe:min:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_X": 468.22810400000005, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 45.978332, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 270.888207, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 8115247435, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5714285714285718, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 3.7142857142857146, "tippecanoe:mean:MAPCOLOR8": 3.857142857142857, "tippecanoe:mean:MAPCOLOR9": 4.571428571428571, "tippecanoe:mean:MAPCOLOR13": 6.142857142857143, "tippecanoe:mean:POP_EST": 44277700.571428578, "tippecanoe:mean:POP_RANK": 13.285714285714287, "tippecanoe:mean:POP_YEAR": 2017.5714285714287, "tippecanoe:mean:GDP_MD": 59051.42857142857, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 20078478.285714289, "tippecanoe:mean:WOE_ID_EH": 22945659.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.857142857142858, "tippecanoe:mean:LONG_LEN": 11.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -84.14285714285714, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0.7142857142857143, "tippecanoe:mean:MIN_LABEL": 3.5285714285714286, "tippecanoe:mean:MAX_LABEL": 8.071428571428572, "tippecanoe:mean:LABEL_X": 66.88972914285715, "tippecanoe:mean:LABEL_Y": 38.69831528571429, "tippecanoe:mean:NE_ID": 1159321062.142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.926758, 75.375605 ], [ 126.870117, 75.095633 ], [ 128.803711, 73.378215 ], [ 124.760742, 72.046840 ], [ 118.959961, 72.289067 ], [ 116.235352, 73.885918 ], [ 119.926758, 75.375605 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 86.660156, 68.688521 ], [ 86.835938, 70.363091 ], [ 91.450195, 71.031249 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 21803000, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 84008, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424778, "tippecanoe:mean:WOE_ID_EH": 23424778, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 80.704823, "tippecanoe:mean:LABEL_Y": 7.581097, "tippecanoe:mean:NE_ID": 1159321025, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, 70.348318 ], [ 131.660156, 69.900118 ], [ 132.758789, 68.155209 ], [ 129.375000, 66.947274 ], [ 124.936523, 67.356785 ], [ 123.266602, 69.005675 ], [ 126.562500, 70.348318 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8201a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 5, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 17, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 390353, "tippecanoe:sum:POP_EST": 28327862, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 178612, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 6056, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424834, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424834, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 70274387, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -194, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -77.975855, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -257.185951, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.982133, "tippecanoe:sum:LABEL_Y": 53.518225, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320815, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 3477961773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.6666666666666668, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.666666666666667, "tippecanoe:mean:POP_EST": 9442620.666666666, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 59537.333333333336, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424795.666666669, "tippecanoe:mean:WOE_ID_EH": 23424795.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.333333333333333, "tippecanoe:mean:LONG_LEN": 6.333333333333333, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -85.72865033333334, "tippecanoe:mean:LABEL_Y": 17.839408333333336, "tippecanoe:mean:NE_ID": 1159320591, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.636719, 72.501722 ], [ 50.625000, 71.173578 ], [ 48.735352, 69.854762 ], [ 44.252930, 69.778952 ], [ 41.088867, 70.959697 ], [ 42.451172, 72.369105 ], [ 47.636719, 72.501722 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 973560, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8208dffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 10, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 10, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 10, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 40, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 44, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 66, "tippecanoe:count:POP_EST": 10, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 5380508, "tippecanoe:sum:POP_EST": 652830176.3, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 151, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 20190, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 2715518, "tippecanoe:min:GDP_MD": 4719, "tippecanoe:sum:GDP_MD": 9498423, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 20187, "tippecanoe:count:WOE_ID": 10, "tippecanoe:max:WOE_ID": 23424950, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 163973658, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:max:WOE_ID_EH": 23424950, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 234248605, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 67, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 83, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 46, "tippecanoe:count:TINY": 10, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -990, "tippecanoe:count:HOMEPART": 10, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 10, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.099999999999999, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 74.8, "tippecanoe:count:LABEL_X": 10, "tippecanoe:max:LABEL_X": 101.892949, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": -111.72812399999997, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": -0.954404, "tippecanoe:sum:LABEL_Y": 248.27622799999998, "tippecanoe:count:NE_ID": 10, "tippecanoe:max:NE_ID": 1159321261, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 11593208048, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.9, "tippecanoe:mean:MAPCOLOR9": 4.4, "tippecanoe:mean:MAPCOLOR13": 6.6, "tippecanoe:mean:POP_EST": 65283017.629999998, "tippecanoe:mean:POP_RANK": 15.1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 949842.3, "tippecanoe:mean:GDP_YEAR": 2018.7, "tippecanoe:mean:WOE_ID": 16397365.8, "tippecanoe:mean:WOE_ID_EH": 23424860.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.7, "tippecanoe:mean:LONG_LEN": 8.3, "tippecanoe:mean:ABBREV_LEN": 4.6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.71, "tippecanoe:mean:MAX_LABEL": 7.4799999999999999, "tippecanoe:mean:LABEL_X": -11.172812399999997, "tippecanoe:mean:LABEL_Y": 24.827622799999998, "tippecanoe:mean:NE_ID": 1159320804.8, "tippecanoe:count": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.498047, 67.458082 ], [ 32.783203, 66.372755 ], [ 31.508789, 64.867608 ], [ 28.300781, 64.453849 ], [ 26.103516, 65.494741 ], [ 27.026367, 66.998844 ], [ 30.498047, 67.458082 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8200a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 15, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 10275414, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 19, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 239000, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 46849864, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 46849864, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -64.604106, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 86.647019, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 2318641834, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 5137707, "tippecanoe:mean:POP_RANK": 9.5, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 119500, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424932, "tippecanoe:mean:WOE_ID_EH": 23424932, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -32.302053, "tippecanoe:mean:LABEL_Y": 43.3235095, "tippecanoe:mean:NE_ID": 1159320917, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.677734, 78.025574 ], [ 67.500000, 77.702234 ], [ 69.565430, 76.047916 ], [ 65.126953, 74.867889 ], [ 58.798828, 75.163300 ], [ 55.634766, 76.669656 ], [ 59.677734, 78.025574 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820197fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 27, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 23, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 106631, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 276430, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 35, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 3855, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 6622, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 10075, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 149741898, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 149741898, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 18, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 91, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 20, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -395, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 25, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -61.790612, "tippecanoe:min:LABEL_X": -64.779172, "tippecanoe:sum:LABEL_X": -316.44404499999998, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 18.426606, "tippecanoe:min:LABEL_Y": 16.73717, "tippecanoe:sum:LABEL_Y": 88.344033, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 5796603821, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.8, "tippecanoe:mean:MAPCOLOR9": 5.4, "tippecanoe:mean:MAPCOLOR13": 4.6, "tippecanoe:mean:POP_EST": 55286, "tippecanoe:mean:POP_RANK": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1324.4, "tippecanoe:mean:GDP_YEAR": 2015, "tippecanoe:mean:WOE_ID": 29948379.6, "tippecanoe:mean:WOE_ID_EH": 29948379.6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.8, "tippecanoe:mean:LONG_LEN": 18.2, "tippecanoe:mean:ABBREV_LEN": 7.8, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -79, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.8, "tippecanoe:mean:LABEL_X": -63.28880899999999, "tippecanoe:mean:LABEL_Y": 17.6688066, "tippecanoe:mean:NE_ID": 1159320764.2, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 72.369105 ], [ 63.500977, 72.087432 ], [ 65.302734, 70.539543 ], [ 62.358398, 69.395783 ], [ 57.832031, 69.672358 ], [ 55.546875, 71.102543 ], [ 58.227539, 72.369105 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82106ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 36, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 22, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 71808, "tippecanoe:sum:POP_EST": 3411314, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 70, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 582, "tippecanoe:sum:GDP_MD": 41876, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424754, "tippecanoe:sum:WOE_ID": 163974191, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 163974191, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 78, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 92, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 35, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -284, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 31, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 65.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -61.344958, "tippecanoe:sum:LABEL_X": -419.001901, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 15.458829, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 75.87001300000002, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320449, "tippecanoe:sum:NE_ID": 8115246839, "tippecanoe:mean:scalerank": 2.142857142857143, "tippecanoe:mean:LABELRANK": 5.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.142857142857143, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6.428571428571429, "tippecanoe:mean:POP_EST": 487330.5714285714, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5982.285714285715, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.42857143, "tippecanoe:mean:WOE_ID_EH": 23424884.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.142857142857143, "tippecanoe:mean:LONG_LEN": 13.142857142857143, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -40.57142857142857, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.428571428571429, "tippecanoe:mean:MAX_LABEL": 9.357142857142858, "tippecanoe:mean:LABEL_X": -59.857414428571427, "tippecanoe:mean:LABEL_Y": 10.838573285714288, "tippecanoe:mean:NE_ID": 1159320977, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.832031, 69.672358 ], [ 62.358398, 69.395783 ], [ 63.457031, 67.925140 ], [ 60.424805, 66.757250 ], [ 56.293945, 67.016009 ], [ 54.843750, 68.447662 ], [ 57.832031, 69.672358 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82041ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 75277476, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 2773739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424868, "tippecanoe:sum:WOE_ID": 46849839, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424868, "tippecanoe:sum:WOE_ID_EH": 46849839, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 248.997708, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.384924, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 60.037332, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642320, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 37638738, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 1386869.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424919.5, "tippecanoe:mean:WOE_ID_EH": 23424919.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 11.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 124.498854, "tippecanoe:mean:LABEL_Y": 30.018666, "tippecanoe:mean:NE_ID": 1159321160, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.996094, 73.946791 ], [ 156.005859, 72.842021 ], [ 154.995117, 71.074056 ], [ 149.985352, 70.363091 ], [ 145.327148, 71.328950 ], [ 145.371094, 73.124945 ], [ 150.996094, 73.946791 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8201b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 10, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 10, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 52, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 5, "tippecanoe:count:LEVEL": 10, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 33, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 37, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 10, "tippecanoe:max:POP_EST": 28515829, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 57315996, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 20189, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 482359, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 730711, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 20164, "tippecanoe:count:WOE_ID": 10, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 187398728, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 211948628, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 109, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 130, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:TINY": 10, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -786, "tippecanoe:count:HOMEPART": 10, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -490, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 43, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 92.5, "tippecanoe:count:LABEL_X": 10, "tippecanoe:max:LABEL_X": -64.599381, "tippecanoe:min:LABEL_X": -81.24055, "tippecanoe:sum:LABEL_X": -725.4550589999999, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 7.182476, "tippecanoe:sum:LABEL_Y": 181.523907, "tippecanoe:count:NE_ID": 10, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 11593208594, "tippecanoe:mean:scalerank": 1.6, "tippecanoe:mean:LABELRANK": 5.2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.3, "tippecanoe:mean:MAPCOLOR8": 3.3, "tippecanoe:mean:MAPCOLOR9": 3.7, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 5731599.6, "tippecanoe:mean:POP_RANK": 10.6, "tippecanoe:mean:POP_YEAR": 2018.9, "tippecanoe:mean:GDP_MD": 73071.1, "tippecanoe:mean:GDP_YEAR": 2016.4, "tippecanoe:mean:WOE_ID": 18739872.8, "tippecanoe:mean:WOE_ID_EH": 21194862.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.9, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 5.8, "tippecanoe:mean:TINY": -78.6, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0.5, "tippecanoe:mean:MIN_LABEL": 4.3, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": -72.5455059, "tippecanoe:mean:LABEL_Y": 18.1523907, "tippecanoe:mean:NE_ID": 1159320859.4, "tippecanoe:count": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 71.173578 ], [ 55.546875, 71.102543 ], [ 57.832031, 69.672358 ], [ 54.843750, 68.447662 ], [ 50.537109, 68.528235 ], [ 48.735352, 69.854762 ], [ 50.625000, 71.173578 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8204affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7507400, "tippecanoe:sum:POP_EST": 120456048, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 654721, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424776, "tippecanoe:sum:WOE_ID": 71715458, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424776, "tippecanoe:sum:WOE_ID_EH": 71715458, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 14, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 104.50487, "tippecanoe:sum:LABEL_X": 323.98993099999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 56.811829, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962869, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 40152016, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 218240.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905152.666666669, "tippecanoe:mean:WOE_ID_EH": 23905152.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 107.99664366666666, "tippecanoe:mean:LABEL_Y": 18.937276333333334, "tippecanoe:mean:NE_ID": 1159320956.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 71.328950 ], [ 149.985352, 70.363091 ], [ 149.589844, 68.576441 ], [ 145.327148, 67.742759 ], [ 141.064453, 68.576441 ], [ 140.712891, 70.363091 ], [ 145.327148, 71.328950 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820187fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.790039, 73.898111 ], [ 55.590820, 73.849286 ], [ 58.227539, 72.369105 ], [ 55.546875, 71.102543 ], [ 50.625000, 71.173578 ], [ 47.636719, 72.501722 ], [ 49.790039, 73.898111 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8204c7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.135742, 70.348318 ], [ 167.431641, 69.005675 ], [ 165.761719, 67.339861 ], [ 161.279297, 66.947274 ], [ 157.939453, 68.155209 ], [ 159.038086, 69.900118 ], [ 164.135742, 70.348318 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 37861934, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 46639, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424943, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 117124424, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424943, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 117124424, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 46, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 22, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 44, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -9.740299, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -64.057735, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 10.618516, "tippecanoe:sum:LABEL_Y": 71.149136, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321243, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 5796604709, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.2, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 7572386.8, "tippecanoe:mean:POP_RANK": 12.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9327.8, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.8, "tippecanoe:mean:WOE_ID_EH": 23424884.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.4, "tippecanoe:mean:LONG_LEN": 9.2, "tippecanoe:mean:ABBREV_LEN": 4.4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7399999999999999, "tippecanoe:mean:MAX_LABEL": 8.8, "tippecanoe:mean:LABEL_X": -12.811547, "tippecanoe:mean:LABEL_Y": 14.229827199999999, "tippecanoe:mean:NE_ID": 1159320941.8, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.441406, 71.286699 ], [ 86.835938, 70.363091 ], [ 86.660156, 68.688521 ], [ 82.749023, 67.958148 ], [ 78.750000, 68.768235 ], [ 78.222656, 70.407348 ], [ 82.441406, 71.286699 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820b47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.564453, 71.102543 ], [ 78.222656, 70.407348 ], [ 78.750000, 68.768235 ], [ 75.234375, 67.875541 ], [ 71.103516, 68.496040 ], [ 69.960938, 70.080562 ], [ 73.564453, 71.102543 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820837fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 197097, "tippecanoe:sum:POP_EST": 197097, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 852, "tippecanoe:sum:GDP_MD": 852, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID": 23424992, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424992, "tippecanoe:sum:WOE_ID_EH": 23424992, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -172.438241, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -172.438241, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -13.639139, "tippecanoe:sum:LABEL_Y": -13.639139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321423, "tippecanoe:sum:NE_ID": 1159321423, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 197097, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 852, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424992, "tippecanoe:mean:WOE_ID_EH": 23424992, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -172.438241, "tippecanoe:mean:LABEL_Y": -13.639139, "tippecanoe:mean:NE_ID": 1159321423, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.646484, 64.661517 ], [ 9.711914, 63.528971 ], [ 8.920898, 62.308794 ], [ 6.152344, 62.206512 ], [ 3.999023, 63.332413 ], [ 4.702148, 64.567319 ], [ 7.646484, 64.661517 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82088ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 63.470145 ], [ 24.521484, 62.471724 ], [ 23.818359, 60.973107 ], [ 21.269531, 60.457218 ], [ 19.291992, 61.417750 ], [ 19.731445, 62.915233 ], [ 22.412109, 63.470145 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8209affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1620, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1620, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 3, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 3, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 2018, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 10, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2003, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 2003, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424904, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 23424904, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424904, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 23424904, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 4, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_X": -169.862565, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -19.045956, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -19.045956, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321133, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 1159321133, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 1620, "tippecanoe:mean:POP_RANK": 3, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 10, "tippecanoe:mean:GDP_YEAR": 2003, "tippecanoe:mean:WOE_ID": 23424904, "tippecanoe:mean:WOE_ID_EH": 23424904, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -169.862565, "tippecanoe:mean:LABEL_Y": -19.045956, "tippecanoe:mean:NE_ID": 1159321133, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.999023, 63.332413 ], [ 6.152344, 62.206512 ], [ 5.493164, 60.930432 ], [ 2.768555, 60.737686 ], [ 0.527344, 61.835413 ], [ 1.098633, 63.134503 ], [ 3.999023, 63.332413 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8210effffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.897461, 62.492028 ], [ 63.457031, 62.124436 ], [ 64.291992, 60.500525 ], [ 61.787109, 59.288332 ], [ 58.491211, 59.645540 ], [ 57.436523, 61.206798 ], [ 59.897461, 62.492028 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8210cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 18952038, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 282318, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:sum:WOE_ID": 46849529, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:sum:WOE_ID_EH": 46849529, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 14, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 14, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:sum:LABEL_X": -136.49220200000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -38.151771, "tippecanoe:sum:LABEL_Y": -71.65293, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320493, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 2318640824, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 31945375, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 363881.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424764.5, "tippecanoe:mean:WOE_ID_EH": 23424764.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -68.24610100000001, "tippecanoe:mean:LABEL_Y": -35.826465, "tippecanoe:mean:NE_ID": 1159320412, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.291992, 60.500525 ], [ 67.631836, 59.998986 ], [ 68.247070, 58.309489 ], [ 65.786133, 57.160078 ], [ 62.666016, 57.633640 ], [ 61.787109, 59.288332 ], [ 64.291992, 60.500525 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82109ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.635742, 52.616390 ], [ 54.448242, 52.375599 ], [ 55.371094, 50.736455 ], [ 53.657227, 49.382373 ], [ 51.064453, 49.610710 ], [ 50.009766, 51.206883 ], [ 51.635742, 52.616390 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "822107fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 3398, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2012, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 2012, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 23424814, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 23424814, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 27, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -58.738602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -51.608913, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 1159320711, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 3398, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 282, "tippecanoe:mean:GDP_YEAR": 2012, "tippecanoe:mean:WOE_ID": 23424814, "tippecanoe:mean:WOE_ID_EH": 23424814, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 27, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -58.738602, "tippecanoe:mean:LABEL_Y": -51.608913, "tippecanoe:mean:NE_ID": 1159320711, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.985352, 51.727028 ], [ 62.753906, 51.289406 ], [ 63.413086, 49.582226 ], [ 61.479492, 48.312428 ], [ 58.886719, 48.719961 ], [ 58.095703, 50.429518 ], [ 59.985352, 51.727028 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a27fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.880859, 66.319861 ], [ 86.352539, 65.421730 ], [ 86.132812, 63.801894 ], [ 82.836914, 63.094758 ], [ 79.497070, 63.937372 ], [ 79.321289, 65.549367 ], [ 82.880859, 66.319861 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82204ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 30, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.583008, 50.903033 ], [ 89.824219, 49.894634 ], [ 89.560547, 48.136767 ], [ 87.275391, 47.368594 ], [ 85.078125, 48.341646 ], [ 85.166016, 50.120578 ], [ 87.583008, 50.903033 ] ] ] } } , { "type": "Feature", "properties": { "bin": "820417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 7169455, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 7169455, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 18173, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 18173, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424872, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 23424872, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424872, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 23424872, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 102.533912, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 102.533912, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 19.431821, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 19.431821, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321011, "tippecanoe:min:NE_ID": 1159321011, "tippecanoe:sum:NE_ID": 1159321011, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 7169455, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 18173, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424872, "tippecanoe:mean:WOE_ID_EH": 23424872, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 102.533912, "tippecanoe:mean:LABEL_Y": 19.431821, "tippecanoe:mean:NE_ID": 1159321011, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.702148, 73.946791 ], [ 145.371094, 73.124945 ], [ 145.327148, 71.328950 ], [ 140.712891, 70.363091 ], [ 135.703125, 71.074056 ], [ 134.692383, 72.842021 ], [ 139.702148, 73.946791 ] ] ] } } , @@ -68,76 +86,72 @@ , { "type": "Feature", "properties": { "bin": "820427fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.933594, 79.318942 ], [ 145.371094, 78.534311 ], [ 145.371094, 76.730314 ], [ 138.999023, 75.748125 ], [ 132.011719, 76.382969 ], [ 130.034180, 78.125454 ], [ 136.933594, 79.318942 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82040ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25666161, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 25666161, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40000, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 40000, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424865, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 23424865, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424865, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 23424865, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 126.444516, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 126.444516, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 39.885252, "tippecanoe:sum:LABEL_Y": 39.885252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159321181, "tippecanoe:sum:NE_ID": 1159321181, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 25666161, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40000, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424865, "tippecanoe:mean:WOE_ID_EH": 23424865, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 126.444516, "tippecanoe:mean:LABEL_Y": 39.885252, "tippecanoe:mean:NE_ID": 1159321181, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.730469, 76.372619 ], [ 163.828125, 75.084326 ], [ 161.894531, 73.365639 ], [ 156.005859, 72.842021 ], [ 150.996094, 73.946791 ], [ 151.699219, 75.748125 ], [ 158.730469, 76.372619 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82058ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -65, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 1600424416, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 80, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 15209543, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549103, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549103, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 20.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 47.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 106.337289, "tippecanoe:min:LABEL_X": 19.01705, "tippecanoe:sum:LABEL_X": 465.849063, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 213.74752999999999, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955924702, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": -10.833333333333334, "tippecanoe:mean:POP_EST": 266737402.66666667, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 2534923.8333333337, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424850.5, "tippecanoe:mean:WOE_ID_EH": 23424850.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.3666666666666669, "tippecanoe:mean:MAX_LABEL": 7.866666666666667, "tippecanoe:mean:LABEL_X": 77.6415105, "tippecanoe:mean:LABEL_Y": 35.62458833333333, "tippecanoe:mean:NE_ID": 1159320783.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.803711, 73.378215 ], [ 134.692383, 72.842021 ], [ 135.703125, 71.074056 ], [ 131.660156, 69.900118 ], [ 126.562500, 70.348318 ], [ 124.760742, 72.046840 ], [ 128.803711, 73.378215 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82058ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -72, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 192423963, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 48, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 8070, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 335757, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 93699368, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 93699368, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 36, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 23, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 16.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 34.5, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 77.129553, "tippecanoe:sum:LABEL_X": 340.494724, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 115.390172, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 4637282944, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 4.75, "tippecanoe:mean:MAPCOLOR9": 4.25, "tippecanoe:mean:MAPCOLOR13": -18, "tippecanoe:mean:POP_EST": 48105990.75, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:mean:GDP_MD": 83939.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424842, "tippecanoe:mean:WOE_ID_EH": 23424842, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:mean:MIN_LABEL": 4.125, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:mean:LABEL_X": 85.123681, "tippecanoe:mean:LABEL_Y": 28.847543, "tippecanoe:mean:NE_ID": 1159320736, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.803711, 73.378215 ], [ 134.692383, 72.842021 ], [ 135.703125, 71.074056 ], [ 131.660156, 69.900118 ], [ 126.562500, 70.348318 ], [ 124.760742, 72.046840 ], [ 128.803711, 73.378215 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.899414, 65.440002 ], [ 99.755859, 64.225493 ], [ 98.789062, 62.674143 ], [ 95.361328, 62.288365 ], [ 92.592773, 63.391522 ], [ 93.120117, 64.979359 ], [ 96.899414, 65.440002 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 18628747, "tippecanoe:min:POP_EST": 11530580, "tippecanoe:sum:POP_EST": 30159327, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 7666, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 10678, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424889, "tippecanoe:min:WOE_ID": 23424774, "tippecanoe:sum:WOE_ID": 46849663, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424889, "tippecanoe:min:WOE_ID_EH": 23424774, "tippecanoe:sum:WOE_ID_EH": 46849663, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 33.608082, "tippecanoe:min:LABEL_X": 29.917086, "tippecanoe:sum:LABEL_X": 63.52516800000001, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -13.386737, "tippecanoe:sum:LABEL_Y": -16.719573, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321081, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 15079663.5, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5339, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424831.5, "tippecanoe:mean:WOE_ID_EH": 23424831.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 31.762584000000005, "tippecanoe:mean:LABEL_Y": -8.3597865, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.160156, 66.231457 ], [ 111.533203, 64.792848 ], [ 109.775391, 63.312683 ], [ 106.040039, 63.194018 ], [ 103.579102, 64.510643 ], [ 104.941406, 66.071546 ], [ 109.160156, 66.231457 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820af7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 14645468, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 16949165, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 21440, "tippecanoe:min:GDP_MD": 18340, "tippecanoe:sum:GDP_MD": 39780, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 46849759, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 46849759, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 6.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 29.925444, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 54.104659999999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -18.91164, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -41.014274, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 2318641902, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 8474582.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 19890, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424879.5, "tippecanoe:mean:WOE_ID_EH": 23424879.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 27.052329999999999, "tippecanoe:mean:LABEL_Y": -20.507137, "tippecanoe:mean:NE_ID": 1159320951, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.579102, 64.510643 ], [ 106.040039, 63.194018 ], [ 104.721680, 61.669024 ], [ 101.250000, 61.438767 ], [ 98.789062, 62.674143 ], [ 99.755859, 64.225493 ], [ 103.579102, 64.510643 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8205affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 26, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 32, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 309943904, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 93, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 14123, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 413360, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14126, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549348, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 160619615, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 80, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -589, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 56.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 74.532637, "tippecanoe:min:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_X": 468.22810400000005, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 45.978332, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 270.888207, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 8115247435, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5714285714285718, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 3.7142857142857146, "tippecanoe:mean:MAPCOLOR8": 3.857142857142857, "tippecanoe:mean:MAPCOLOR9": 4.571428571428571, "tippecanoe:mean:MAPCOLOR13": 6.142857142857143, "tippecanoe:mean:POP_EST": 44277700.571428578, "tippecanoe:mean:POP_RANK": 13.285714285714287, "tippecanoe:mean:POP_YEAR": 2017.5714285714287, "tippecanoe:mean:GDP_MD": 59051.42857142857, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 20078478.285714289, "tippecanoe:mean:WOE_ID_EH": 22945659.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.857142857142858, "tippecanoe:mean:LONG_LEN": 11.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -84.14285714285714, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0.7142857142857143, "tippecanoe:mean:MIN_LABEL": 3.5285714285714286, "tippecanoe:mean:MAX_LABEL": 8.071428571428572, "tippecanoe:mean:LABEL_X": 66.88972914285715, "tippecanoe:mean:LABEL_Y": 38.69831528571429, "tippecanoe:mean:NE_ID": 1159321062.142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.926758, 75.375605 ], [ 126.870117, 75.095633 ], [ 128.803711, 73.378215 ], [ 124.760742, 72.046840 ], [ 118.959961, 72.289067 ], [ 116.235352, 73.885918 ], [ 119.926758, 75.375605 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 30366036, "tippecanoe:sum:POP_EST": 30366036, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 15291, "tippecanoe:min:GDP_MD": 15291, "tippecanoe:sum:GDP_MD": 15291, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424902, "tippecanoe:min:WOE_ID": 23424902, "tippecanoe:sum:WOE_ID": 23424902, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424902, "tippecanoe:min:WOE_ID_EH": 23424902, "tippecanoe:sum:WOE_ID_EH": 23424902, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_X": 37.83789, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.94323, "tippecanoe:min:LABEL_Y": -13.94323, "tippecanoe:sum:LABEL_Y": -13.94323, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159321073, "tippecanoe:sum:NE_ID": 1159321073, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 30366036, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 15291, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424902, "tippecanoe:mean:WOE_ID_EH": 23424902, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 37.83789, "tippecanoe:mean:LABEL_Y": -13.94323, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.775391, 63.312683 ], [ 111.840820, 61.876870 ], [ 110.258789, 60.435542 ], [ 106.875000, 60.348696 ], [ 104.721680, 61.669024 ], [ 106.040039, 63.194018 ], [ 109.775391, 63.312683 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 973560, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.721680, 61.669024 ], [ 106.875000, 60.348696 ], [ 105.644531, 58.904646 ], [ 102.524414, 58.722599 ], [ 100.327148, 59.933000 ], [ 101.250000, 61.438767 ], [ 104.721680, 61.669024 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821567fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.817383, 66.196009 ], [ 122.124023, 66.000150 ], [ 123.662109, 64.377941 ], [ 121.245117, 63.054959 ], [ 117.421875, 63.233627 ], [ 115.576172, 64.774125 ], [ 117.817383, 66.196009 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821577fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, 63.233627 ], [ 121.245117, 63.054959 ], [ 122.695312, 61.480760 ], [ 120.541992, 60.174306 ], [ 117.114258, 60.348696 ], [ 115.444336, 61.835413 ], [ 117.421875, 63.233627 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 15, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 15, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 67, "tippecanoe:count:ADM0_DIF": 15, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 15, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 29, "tippecanoe:count:GEOU_DIF": 15, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 15, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 15, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 15, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 47, "tippecanoe:count:MAPCOLOR8": 15, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 49, "tippecanoe:count:MAPCOLOR9": 15, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR13": 15, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 114, "tippecanoe:count:POP_EST": 15, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 217744098, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 193, "tippecanoe:count:POP_YEAR": 15, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 30285, "tippecanoe:count:GDP_MD": 15, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6399941, "tippecanoe:count:GDP_YEAR": 15, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 30282, "tippecanoe:count:WOE_ID": 15, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 317100741, "tippecanoe:count:WOE_ID_EH": 15, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 340525702, "tippecanoe:count:ADM0_A3_UN": 15, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1485, "tippecanoe:count:ADM0_A3_WB": 15, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1485, "tippecanoe:count:NAME_LEN": 15, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 107, "tippecanoe:count:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 122, "tippecanoe:count:ABBREV_LEN": 15, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 63, "tippecanoe:count:TINY": 15, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1381, "tippecanoe:count:HOMEPART": 15, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -85, "tippecanoe:count:MIN_ZOOM": 15, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 15, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 51.900000000000009, "tippecanoe:count:MAX_LABEL": 15, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 125.7, "tippecanoe:count:LABEL_X": 15, "tippecanoe:max:LABEL_X": 68.685548, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 352.04201299999996, "tippecanoe:count:LABEL_Y": 15, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 779.237302, "tippecanoe:count:NE_ID": 15, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:sum:NE_ID": 17389812239, "tippecanoe:mean:scalerank": 0.2, "tippecanoe:mean:LABELRANK": 4.466666666666667, "tippecanoe:mean:ADM0_DIF": 0.2, "tippecanoe:mean:LEVEL": 1.9333333333333334, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1333333333333335, "tippecanoe:mean:MAPCOLOR8": 3.2666666666666668, "tippecanoe:mean:MAPCOLOR9": 3.4, "tippecanoe:mean:MAPCOLOR13": 7.6, "tippecanoe:mean:POP_EST": 14516273.2, "tippecanoe:mean:POP_RANK": 12.866666666666668, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 426662.73333333336, "tippecanoe:mean:GDP_YEAR": 2018.8, "tippecanoe:mean:WOE_ID": 21140049.4, "tippecanoe:mean:WOE_ID_EH": 22701713.466666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.133333333333334, "tippecanoe:mean:LONG_LEN": 8.133333333333333, "tippecanoe:mean:ABBREV_LEN": 4.2, "tippecanoe:mean:TINY": -92.06666666666666, "tippecanoe:mean:HOMEPART": -5.666666666666667, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4600000000000006, "tippecanoe:mean:MAX_LABEL": 8.38, "tippecanoe:mean:LABEL_X": 23.46946753333333, "tippecanoe:mean:LABEL_Y": 51.949153466666668, "tippecanoe:mean:NE_ID": 1159320815.9333335, "tippecanoe:count": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.754883, 78.331648 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 103.754883, 78.331648 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8214a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID": 28289411, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289411, "tippecanoe:sum:WOE_ID_EH": 28289411, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 25, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_X": 73.50521, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -53.103462, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -53.103462, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320361, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 1159320361, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289411, "tippecanoe:mean:WOE_ID_EH": 28289411, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 25, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 73.50521, "tippecanoe:mean:LABEL_Y": -53.103462, "tippecanoe:mean:NE_ID": 1159320361, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.365234, 51.536086 ], [ 126.914062, 51.206883 ], [ 127.661133, 49.781264 ], [ 126.035156, 48.748945 ], [ 123.618164, 49.066668 ], [ 122.739258, 50.429518 ], [ 124.365234, 51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 140, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 16, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289406, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 28289406, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289406, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 28289406, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 22, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 35, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 69.122136, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 69.122136, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -49.303721, "tippecanoe:sum:LABEL_Y": -49.303721, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320631, "tippecanoe:sum:NE_ID": 1159320631, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 140, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 16, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289406, "tippecanoe:mean:WOE_ID_EH": 28289406, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 22, "tippecanoe:mean:LONG_LEN": 35, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 69.122136, "tippecanoe:mean:LABEL_Y": -49.303721, "tippecanoe:mean:NE_ID": 1159320631, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 54.110943 ], [ 127.924805, 53.748711 ], [ 128.715820, 52.268157 ], [ 126.914062, 51.206883 ], [ 124.365234, 51.536086 ], [ 123.398438, 52.961875 ], [ 125.156250, 54.110943 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820adffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 27820193, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 15279, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424883, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 46849669, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424883, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 46849669, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 46.704241, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 90.022335, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -18.628288, "tippecanoe:sum:LABEL_Y": -30.355971000000005, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321051, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 2318641572, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 13910096.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7639.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.5, "tippecanoe:mean:WOE_ID_EH": 23424834.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.35, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 45.0111675, "tippecanoe:mean:LABEL_Y": -15.177985500000002, "tippecanoe:mean:NE_ID": 1159320786, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.533203, 64.792848 ], [ 115.576172, 64.774125 ], [ 117.421875, 63.233627 ], [ 115.444336, 61.835413 ], [ 111.840820, 61.876870 ], [ 109.775391, 63.312683 ], [ 111.533203, 64.792848 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.128906, 67.407487 ], [ 97.866211, 67.050304 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821727fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1293119, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 1293119, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 2017, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 2017, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID": 23424968, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424968, "tippecanoe:sum:WOE_ID_EH": 23424968, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_X": 125.854679, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.803705, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -8.803705, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159321313, "tippecanoe:sum:NE_ID": 1159321313, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1293119, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 2017, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424968, "tippecanoe:mean:WOE_ID_EH": 23424968, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 125.854679, "tippecanoe:mean:LABEL_Y": -8.803705, "tippecanoe:mean:NE_ID": 1159321313, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.885742, 65.784758 ], [ 156.181641, 64.699105 ], [ 155.478516, 62.995158 ], [ 151.918945, 62.329208 ], [ 148.754883, 63.312683 ], [ 148.974609, 65.053602 ], [ 152.885742, 65.784758 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 21803000, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 84008, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424778, "tippecanoe:mean:WOE_ID_EH": 23424778, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 80.704823, "tippecanoe:mean:LABEL_Y": 7.581097, "tippecanoe:mean:NE_ID": 1159321025, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, 70.348318 ], [ 131.660156, 69.900118 ], [ 132.758789, 68.155209 ], [ 129.375000, 66.947274 ], [ 124.936523, 67.356785 ], [ 123.266602, 69.005675 ], [ 126.562500, 70.348318 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82049ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2387, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 2387, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 35, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 35, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424869, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 23424869, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 17, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 24, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 13, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_X": 105.67259, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -10.490789, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -10.490789, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320363, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 1159320363, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2387, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 35, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424869, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 17, "tippecanoe:mean:LONG_LEN": 24, "tippecanoe:mean:ABBREV_LEN": 13, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 105.67259, "tippecanoe:mean:LABEL_Y": -10.490789, "tippecanoe:mean:NE_ID": 1159320363, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 65.982270 ], [ 148.974609, 65.053602 ], [ 148.754883, 63.312683 ], [ 145.327148, 62.492028 ], [ 141.943359, 63.312683 ], [ 141.679688, 65.053602 ], [ 145.327148, 65.982270 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821747fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 287800, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 287800, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 10770, "tippecanoe:sum:GDP_MD": 10770, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424903, "tippecanoe:min:WOE_ID": 23424903, "tippecanoe:sum:WOE_ID": 23424903, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424903, "tippecanoe:min:WOE_ID_EH": 23424903, "tippecanoe:sum:WOE_ID_EH": 23424903, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_LABEL": 4.6, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 165.084004, "tippecanoe:min:LABEL_X": 165.084004, "tippecanoe:sum:LABEL_X": 165.084004, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -21.064697, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -21.064697, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320641, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 1159320641, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 287800, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 10770, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424903, "tippecanoe:mean:WOE_ID_EH": 23424903, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.6, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 165.084004, "tippecanoe:mean:LABEL_Y": -21.064697, "tippecanoe:mean:NE_ID": 1159320641, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.232422, 63.233627 ], [ 175.209961, 61.835413 ], [ 173.540039, 60.348696 ], [ 170.112305, 60.152442 ], [ 167.958984, 61.459771 ], [ 169.409180, 63.035039 ], [ 173.232422, 63.233627 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82040ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25666161, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 25666161, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40000, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 40000, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424865, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 23424865, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424865, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 23424865, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 126.444516, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 126.444516, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 39.885252, "tippecanoe:sum:LABEL_Y": 39.885252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159321181, "tippecanoe:sum:NE_ID": 1159321181, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 25666161, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40000, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424865, "tippecanoe:mean:WOE_ID_EH": 23424865, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 126.444516, "tippecanoe:mean:LABEL_Y": 39.885252, "tippecanoe:mean:NE_ID": 1159321181, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.730469, 76.372619 ], [ 163.828125, 75.084326 ], [ 161.894531, 73.365639 ], [ 156.005859, 72.842021 ], [ 150.996094, 73.946791 ], [ 151.699219, 75.748125 ], [ 158.730469, 76.372619 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821777fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.992188, 64.377941 ], [ 169.409180, 63.035039 ], [ 167.958984, 61.459771 ], [ 164.443359, 61.143235 ], [ 161.938477, 62.369996 ], [ 163.037109, 64.014496 ], [ 166.992188, 64.377941 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820457fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 126264931, "tippecanoe:sum:POP_EST": 126264931, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 5081769, "tippecanoe:sum:GDP_MD": 5081769, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424856, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 23424856, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424856, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 23424856, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 138.44217, "tippecanoe:sum:LABEL_X": 138.44217, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 36.142538, "tippecanoe:sum:LABEL_Y": 36.142538, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320937, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 1159320937, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 126264931, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5081769, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424856, "tippecanoe:mean:WOE_ID_EH": 23424856, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 138.44217, "tippecanoe:mean:LABEL_Y": 36.142538, "tippecanoe:mean:NE_ID": 1159320937, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.771484, 75.364506 ], [ 174.462891, 73.873717 ], [ 171.694336, 72.275693 ], [ 165.937500, 72.033289 ], [ 161.894531, 73.365639 ], [ 163.828125, 75.084326 ], [ 170.771484, 75.364506 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821767fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 669823, "tippecanoe:sum:POP_EST": 669823, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1589, "tippecanoe:min:GDP_MD": 1589, "tippecanoe:sum:GDP_MD": 1589, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424766, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 23424766, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424766, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 23424766, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 159.170468, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 159.170468, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -8.029548, "tippecanoe:sum:LABEL_Y": -8.029548, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321249, "tippecanoe:min:NE_ID": 1159321249, "tippecanoe:sum:NE_ID": 1159321249, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 669823, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1589, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424766, "tippecanoe:mean:WOE_ID_EH": 23424766, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 159.170468, "tippecanoe:mean:LABEL_Y": -8.029548, "tippecanoe:mean:NE_ID": 1159321249, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.880859, 66.196009 ], [ 175.078125, 64.755390 ], [ 173.232422, 63.233627 ], [ 169.409180, 63.035039 ], [ 166.992188, 64.377941 ], [ 168.530273, 66.000150 ], [ 172.880859, 66.196009 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82041ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 75277476, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 2773739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424868, "tippecanoe:sum:WOE_ID": 46849839, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424868, "tippecanoe:sum:WOE_ID_EH": 46849839, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 248.997708, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.384924, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 60.037332, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642320, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 37638738, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 1386869.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424919.5, "tippecanoe:mean:WOE_ID_EH": 23424919.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 11.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 124.498854, "tippecanoe:mean:LABEL_Y": 30.018666, "tippecanoe:mean:NE_ID": 1159321160, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.996094, 73.946791 ], [ 156.005859, 72.842021 ], [ 154.995117, 71.074056 ], [ 149.985352, 70.363091 ], [ 145.327148, 71.328950 ], [ 145.371094, 73.124945 ], [ 150.996094, 73.946791 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821047fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 67.016009 ], [ 60.424805, 66.757250 ], [ 61.523438, 65.256706 ], [ 58.798828, 64.033744 ], [ 55.019531, 64.263684 ], [ 53.657227, 65.730626 ], [ 56.293945, 67.016009 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8204affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7507400, "tippecanoe:sum:POP_EST": 120456048, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 654721, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424776, "tippecanoe:sum:WOE_ID": 71715458, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424776, "tippecanoe:sum:WOE_ID_EH": 71715458, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 14, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 104.50487, "tippecanoe:sum:LABEL_X": 323.98993099999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 56.811829, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962869, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 40152016, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 218240.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905152.666666669, "tippecanoe:mean:WOE_ID_EH": 23905152.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 107.99664366666666, "tippecanoe:mean:LABEL_Y": 18.937276333333334, "tippecanoe:mean:NE_ID": 1159320956.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 71.328950 ], [ 149.985352, 70.363091 ], [ 149.589844, 68.576441 ], [ 145.327148, 67.742759 ], [ 141.064453, 68.576441 ], [ 140.712891, 70.363091 ], [ 145.327148, 71.328950 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8204cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.353516, 69.209404 ], [ 174.946289, 67.742759 ], [ 172.880859, 66.196009 ], [ 168.530273, 66.000150 ], [ 165.761719, 67.339861 ], [ 167.431641, 69.005675 ], [ 172.353516, 69.209404 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8204c7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.135742, 70.348318 ], [ 167.431641, 69.005675 ], [ 165.761719, 67.339861 ], [ 161.279297, 66.947274 ], [ 157.939453, 68.155209 ], [ 159.038086, 69.900118 ], [ 164.135742, 70.348318 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 52573973, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 95503, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424863, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 37.907632, "tippecanoe:mean:LABEL_Y": 0.549043, "tippecanoe:mean:NE_ID": 1159320971, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.093750, 67.776025 ], [ 115.751953, 67.759398 ], [ 117.817383, 66.196009 ], [ 115.576172, 64.774125 ], [ 111.533203, 64.792848 ], [ 109.160156, 66.231457 ], [ 111.093750, 67.776025 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820af7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 14645468, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 16949165, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 21440, "tippecanoe:min:GDP_MD": 18340, "tippecanoe:sum:GDP_MD": 39780, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 46849759, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 46849759, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 6.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 29.925444, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 54.104659999999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -18.91164, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -41.014274, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 2318641902, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 8474582.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 19890, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424879.5, "tippecanoe:mean:WOE_ID_EH": 23424879.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 27.052329999999999, "tippecanoe:mean:LABEL_Y": -20.507137, "tippecanoe:mean:NE_ID": 1159320951, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.579102, 64.510643 ], [ 106.040039, 63.194018 ], [ 104.721680, 61.669024 ], [ 101.250000, 61.438767 ], [ 98.789062, 62.674143 ], [ 99.755859, 64.225493 ], [ 103.579102, 64.510643 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82009ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 31, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 83455958, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 65, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3116, "tippecanoe:sum:GDP_MD": 3764975, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117123960, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424757, "tippecanoe:sum:WOE_ID_EH": 140549025, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 57, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 61, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -294, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 52.7, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 4.800448, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -19.26472, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 62.185604, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 324.136827, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320389, "tippecanoe:sum:NE_ID": 6955923964, "tippecanoe:mean:scalerank": 2.6666666666666667, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.166666666666667, "tippecanoe:mean:POP_EST": 13909326.333333334, "tippecanoe:mean:POP_RANK": 10.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 627495.8333333334, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 19520660, "tippecanoe:mean:WOE_ID_EH": 23424837.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.166666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.783333333333333, "tippecanoe:mean:MAX_LABEL": 8.783333333333334, "tippecanoe:mean:LABEL_X": -3.210786666666667, "tippecanoe:mean:LABEL_Y": 54.0228045, "tippecanoe:mean:NE_ID": 1159320660.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.725586, 78.988187 ], [ 95.537109, 77.888038 ], [ 94.130859, 76.163993 ], [ 87.714844, 75.497157 ], [ 81.650391, 76.413973 ], [ 81.210938, 78.143526 ], [ 88.725586, 78.988187 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 30366036, "tippecanoe:sum:POP_EST": 30366036, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 15291, "tippecanoe:min:GDP_MD": 15291, "tippecanoe:sum:GDP_MD": 15291, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424902, "tippecanoe:min:WOE_ID": 23424902, "tippecanoe:sum:WOE_ID": 23424902, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424902, "tippecanoe:min:WOE_ID_EH": 23424902, "tippecanoe:sum:WOE_ID_EH": 23424902, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_X": 37.83789, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.94323, "tippecanoe:min:LABEL_Y": -13.94323, "tippecanoe:sum:LABEL_Y": -13.94323, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159321073, "tippecanoe:sum:NE_ID": 1159321073, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 30366036, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 15291, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424902, "tippecanoe:mean:WOE_ID_EH": 23424902, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 37.83789, "tippecanoe:mean:LABEL_Y": -13.94323, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.775391, 63.312683 ], [ 111.840820, 61.876870 ], [ 110.258789, 60.435542 ], [ 106.875000, 60.348696 ], [ 104.721680, 61.669024 ], [ 106.040039, 63.194018 ], [ 109.775391, 63.312683 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820aeffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 28, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 11062113, "tippecanoe:sum:POP_EST": 212754687, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 75, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 63177, "tippecanoe:min:GDP_MD": 10354, "tippecanoe:sum:GDP_MD": 171094, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 10091, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 93699565, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 93699565, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 14, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 39, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 34.959183, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 151.860612, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -0.6041630000000007, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320513, "tippecanoe:sum:NE_ID": 5796605647, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8, "tippecanoe:mean:MAPCOLOR8": 3.6, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 5.6, "tippecanoe:mean:POP_EST": 42550937.4, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 34218.8, "tippecanoe:mean:GDP_YEAR": 2018.2, "tippecanoe:mean:WOE_ID": 18739913, "tippecanoe:mean:WOE_ID_EH": 18739913, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.6, "tippecanoe:mean:LONG_LEN": 12.6, "tippecanoe:mean:ABBREV_LEN": 5.2, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.8, "tippecanoe:mean:MAX_LABEL": 7.8, "tippecanoe:mean:LABEL_X": 30.372122400000003, "tippecanoe:mean:LABEL_Y": -0.12083260000000014, "tippecanoe:mean:NE_ID": 1159321129.4, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.413086, 69.224997 ], [ 111.093750, 67.776025 ], [ 109.160156, 66.231457 ], [ 104.941406, 66.071546 ], [ 102.128906, 67.407487 ], [ 103.579102, 69.021414 ], [ 108.413086, 69.224997 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.899414, 65.440002 ], [ 99.755859, 64.225493 ], [ 98.789062, 62.674143 ], [ 95.361328, 62.288365 ], [ 92.592773, 63.391522 ], [ 93.120117, 64.979359 ], [ 96.899414, 65.440002 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 31825295, "tippecanoe:sum:POP_EST": 31825295, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 88815, "tippecanoe:sum:GDP_MD": 88815, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424745, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 23424745, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424745, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 23424745, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_X": 17.984249, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.182762, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -12.182762, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320323, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 1159320323, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 31825295, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 88815, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424745, "tippecanoe:mean:WOE_ID_EH": 23424745, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 17.984249, "tippecanoe:mean:LABEL_Y": -12.182762, "tippecanoe:mean:NE_ID": 1159320323, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 67.407487 ], [ 104.941406, 66.071546 ], [ 103.579102, 64.510643 ], [ 99.755859, 64.225493 ], [ 96.899414, 65.440002 ], [ 97.866211, 67.050304 ], [ 102.128906, 67.407487 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820adffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 27820193, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 15279, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424883, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 46849669, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424883, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 46849669, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 46.704241, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 90.022335, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -18.628288, "tippecanoe:sum:LABEL_Y": -30.355971000000005, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321051, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 2318641572, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 13910096.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7639.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.5, "tippecanoe:mean:WOE_ID_EH": 23424834.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.35, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 45.0111675, "tippecanoe:mean:LABEL_Y": -15.177985500000002, "tippecanoe:mean:NE_ID": 1159320786, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.533203, 64.792848 ], [ 115.576172, 64.774125 ], [ 117.421875, 63.233627 ], [ 115.444336, 61.835413 ], [ 111.840820, 61.876870 ], [ 109.775391, 63.312683 ], [ 111.533203, 64.792848 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820527fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.063477, 81.334844 ], [ 107.094727, 79.997168 ], [ 103.754883, 78.331648 ], [ 95.537109, 77.888038 ], [ 88.725586, 78.988187 ], [ 89.560547, 80.739423 ], [ 100.063477, 81.334844 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.721680, 61.669024 ], [ 106.875000, 60.348696 ], [ 105.644531, 58.904646 ], [ 102.524414, 58.722599 ], [ 100.327148, 59.933000 ], [ 101.250000, 61.438767 ], [ 104.721680, 61.669024 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 97.866211, 67.050304 ], [ 96.899414, 65.440002 ], [ 93.120117, 64.979359 ], [ 89.956055, 66.053716 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "822ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 15, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 17861030, "tippecanoe:sum:POP_EST": 76419300, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 23309, "tippecanoe:sum:GDP_MD": 374740, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23425003, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849945, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23425003, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849945, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 26.395298, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 50.061032, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -14.660804, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -44.36958, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321439, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 2318642870, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 38209650, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 187370, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424972.5, "tippecanoe:mean:WOE_ID_EH": 23424972.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:mean:LABEL_X": 25.030516, "tippecanoe:mean:LABEL_Y": -22.18479, "tippecanoe:mean:NE_ID": 1159321435, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.691406, 43.897892 ], [ 140.405273, 43.036776 ], [ 140.273438, 41.409776 ], [ 138.515625, 40.613952 ], [ 136.845703, 41.442726 ], [ 136.889648, 43.068888 ], [ 138.691406, 43.897892 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:min:POP_EST": 603253, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.363281, 73.775780 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 86.835938, 70.363091 ], [ 82.441406, 71.286699 ], [ 82.221680, 72.971189 ], [ 87.363281, 73.775780 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 18628747, "tippecanoe:min:POP_EST": 11530580, "tippecanoe:sum:POP_EST": 30159327, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 7666, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 10678, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424889, "tippecanoe:min:WOE_ID": 23424774, "tippecanoe:sum:WOE_ID": 46849663, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424889, "tippecanoe:min:WOE_ID_EH": 23424774, "tippecanoe:sum:WOE_ID_EH": 46849663, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 33.608082, "tippecanoe:min:LABEL_X": 29.917086, "tippecanoe:sum:LABEL_X": 63.52516800000001, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -13.386737, "tippecanoe:sum:LABEL_Y": -16.719573, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321081, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 15079663.5, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5339, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424831.5, "tippecanoe:mean:WOE_ID_EH": 23424831.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 31.762584000000005, "tippecanoe:mean:LABEL_Y": -8.3597865, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.160156, 66.231457 ], [ 111.533203, 64.792848 ], [ 109.775391, 63.312683 ], [ 106.040039, 63.194018 ], [ 103.579102, 64.510643 ], [ 104.941406, 66.071546 ], [ 109.160156, 66.231457 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 19, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 4937374, "tippecanoe:sum:POP_EST": 38467133, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 40, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 3070, "tippecanoe:sum:GDP_MD": 65730, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 70274676, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 70274676, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 32, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 10.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -11.763677, "tippecanoe:sum:LABEL_X": -26.792673999999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.617449, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 22.556016, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 3477962773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 12822377.666666666, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21910, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892, "tippecanoe:mean:WOE_ID_EH": 23424892, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -8.930891333333334, "tippecanoe:mean:LABEL_Y": 7.518672, "tippecanoe:mean:NE_ID": 1159320924.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.660156, 68.688521 ], [ 90.351562, 67.676085 ], [ 89.956055, 66.053716 ], [ 86.352539, 65.421730 ], [ 82.880859, 66.319861 ], [ 82.749023, 67.958148 ], [ 86.660156, 68.688521 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821577fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, 63.233627 ], [ 121.245117, 63.054959 ], [ 122.695312, 61.480760 ], [ 120.541992, 60.174306 ], [ 117.114258, 60.348696 ], [ 115.444336, 61.835413 ], [ 117.421875, 63.233627 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82156ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 530953, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 530953, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5642, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 5642, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID": 23424899, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424899, "tippecanoe:sum:WOE_ID_EH": 23424899, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.507554, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 73.507554, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 4.174441, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 4.174441, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321053, "tippecanoe:sum:NE_ID": 1159321053, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 530953, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5642, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424899, "tippecanoe:mean:WOE_ID_EH": 23424899, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 73.507554, "tippecanoe:mean:LABEL_Y": 4.174441, "tippecanoe:mean:NE_ID": 1159321053, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.936523, 67.356785 ], [ 129.375000, 66.947274 ], [ 130.517578, 65.256706 ], [ 127.617188, 64.014496 ], [ 123.662109, 64.377941 ], [ 122.124023, 66.000150 ], [ 124.936523, 67.356785 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821567fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.817383, 66.196009 ], [ 122.124023, 66.000150 ], [ 123.662109, 64.377941 ], [ 121.245117, 63.054959 ], [ 117.421875, 63.233627 ], [ 115.576172, 64.774125 ], [ 117.817383, 66.196009 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8204d7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 68.155209 ], [ 161.279297, 66.947274 ], [ 160.180664, 65.238307 ], [ 156.181641, 64.699105 ], [ 152.885742, 65.784758 ], [ 153.457031, 67.542167 ], [ 157.939453, 68.155209 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8214a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID": 28289411, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289411, "tippecanoe:sum:WOE_ID_EH": 28289411, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 25, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_X": 73.50521, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -53.103462, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -53.103462, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320361, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 1159320361, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289411, "tippecanoe:mean:WOE_ID_EH": 28289411, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 25, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 73.50521, "tippecanoe:mean:LABEL_Y": -53.103462, "tippecanoe:mean:NE_ID": 1159320361, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.365234, 51.536086 ], [ 126.914062, 51.206883 ], [ 127.661133, 49.781264 ], [ 126.035156, 48.748945 ], [ 123.618164, 49.066668 ], [ 122.739258, 50.429518 ], [ 124.365234, 51.536086 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 41, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 32, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 33, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 60297396, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 129744004, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 2003576, "tippecanoe:min:GDP_MD": 3154, "tippecanoe:sum:GDP_MD": 3072017, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 18170, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424967, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 210823727, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424967, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 210823727, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 84, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 41, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -578, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 36.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.8, "tippecanoe:sum:MAX_LABEL": 77.8, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 18.06841, "tippecanoe:min:LABEL_X": 1.539409, "tippecanoe:sum:LABEL_X": 80.51718399999999, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 49.733732, "tippecanoe:min:LABEL_Y": 27.397406, "tippecanoe:sum:LABEL_Y": 382.08085600000006, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 10433887383, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.555555555555555, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5555555555555555, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 14416000.444444444, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 341335.22222222227, "tippecanoe:mean:GDP_YEAR": 2018.888888888889, "tippecanoe:mean:WOE_ID": 23424858.555555557, "tippecanoe:mean:WOE_ID_EH": 23424858.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.333333333333334, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.555555555555555, "tippecanoe:mean:TINY": -64.22222222222223, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.077777777777778, "tippecanoe:mean:MAX_LABEL": 8.644444444444444, "tippecanoe:mean:LABEL_X": 8.946353777777777, "tippecanoe:mean:LABEL_Y": 42.45342844444445, "tippecanoe:mean:NE_ID": 1159320820.3333333, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 76.163993 ], [ 99.272461, 74.959392 ], [ 97.734375, 73.264704 ], [ 92.197266, 72.724958 ], [ 87.363281, 73.775780 ], [ 87.714844, 75.497157 ], [ 94.130859, 76.163993 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 140, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 16, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289406, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 28289406, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289406, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 28289406, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 22, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 35, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 69.122136, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 69.122136, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -49.303721, "tippecanoe:sum:LABEL_Y": -49.303721, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320631, "tippecanoe:sum:NE_ID": 1159320631, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 140, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 16, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289406, "tippecanoe:mean:WOE_ID_EH": 28289406, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 22, "tippecanoe:mean:LONG_LEN": 35, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 69.122136, "tippecanoe:mean:LABEL_Y": -49.303721, "tippecanoe:mean:NE_ID": 1159320631, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 54.110943 ], [ 127.924805, 53.748711 ], [ 128.715820, 52.268157 ], [ 126.914062, 51.206883 ], [ 124.365234, 51.536086 ], [ 123.398438, 52.961875 ], [ 125.156250, 54.110943 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 5703569, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 372062, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 103.816925, "tippecanoe:mean:LABEL_Y": 1.366587, "tippecanoe:mean:NE_ID": 1159321247, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.064453, 68.576441 ], [ 145.327148, 67.742759 ], [ 145.327148, 65.982270 ], [ 141.679688, 65.053602 ], [ 137.812500, 65.784758 ], [ 137.197266, 67.542167 ], [ 141.064453, 68.576441 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82049ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2387, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 2387, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 35, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 35, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424869, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 23424869, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 17, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 24, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 13, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_X": 105.67259, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -10.490789, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -10.490789, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320363, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 1159320363, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2387, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 35, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424869, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 17, "tippecanoe:mean:LONG_LEN": 24, "tippecanoe:mean:ABBREV_LEN": 13, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 105.67259, "tippecanoe:mean:LABEL_Y": -10.490789, "tippecanoe:mean:NE_ID": 1159320363, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 65.982270 ], [ 148.974609, 65.053602 ], [ 148.754883, 63.312683 ], [ 145.327148, 62.492028 ], [ 141.943359, 63.312683 ], [ 141.679688, 65.053602 ], [ 145.327148, 65.982270 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82048ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.589844, 68.576441 ], [ 153.457031, 67.542167 ], [ 152.885742, 65.784758 ], [ 148.974609, 65.053602 ], [ 145.327148, 65.982270 ], [ 145.327148, 67.742759 ], [ 149.589844, 68.576441 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821687fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.510742, 50.064192 ], [ 160.356445, 48.922499 ], [ 159.653320, 47.279229 ], [ 157.236328, 46.769968 ], [ 155.390625, 47.901614 ], [ 156.005859, 49.553726 ], [ 158.510742, 50.064192 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82104ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.457031, 67.925140 ], [ 67.675781, 67.491751 ], [ 68.422852, 65.946472 ], [ 65.390625, 64.848937 ], [ 61.523438, 65.256706 ], [ 60.424805, 66.757250 ], [ 63.457031, 67.925140 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821727fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1293119, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 1293119, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 2017, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 2017, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID": 23424968, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424968, "tippecanoe:sum:WOE_ID_EH": 23424968, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_X": 125.854679, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.803705, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -8.803705, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159321313, "tippecanoe:sum:NE_ID": 1159321313, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1293119, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 2017, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424968, "tippecanoe:mean:WOE_ID_EH": 23424968, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 125.854679, "tippecanoe:mean:LABEL_Y": -8.803705, "tippecanoe:mean:NE_ID": 1159321313, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.885742, 65.784758 ], [ 156.181641, 64.699105 ], [ 155.478516, 62.995158 ], [ 151.918945, 62.329208 ], [ 148.754883, 63.312683 ], [ 148.974609, 65.053602 ], [ 152.885742, 65.784758 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "821067fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 32510453, "tippecanoe:min:POP_EST": 4246439, "tippecanoe:sum:POP_EST": 54130554, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 41, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 226848, "tippecanoe:min:GDP_MD": 66800, "tippecanoe:sum:GDP_MD": 401083, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 70274644, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 70274644, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -72.90016, "tippecanoe:min:LABEL_X": -80.352106, "tippecanoe:sum:LABEL_X": -231.440641, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.72198, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": -5.513775000000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321163, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 3477962891, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 18043518, "tippecanoe:mean:POP_RANK": 13.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 133694.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424881.333333333, "tippecanoe:mean:WOE_ID_EH": 23424881.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.666666666666667, "tippecanoe:mean:LONG_LEN": 5.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -77.14688033333333, "tippecanoe:mean:LABEL_Y": -1.8379250000000003, "tippecanoe:mean:NE_ID": 1159320963.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 68.528235 ], [ 54.843750, 68.447662 ], [ 56.293945, 67.016009 ], [ 53.657227, 65.730626 ], [ 49.746094, 65.820782 ], [ 48.076172, 67.187000 ], [ 50.537109, 68.528235 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821747fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 287800, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 287800, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 10770, "tippecanoe:sum:GDP_MD": 10770, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424903, "tippecanoe:min:WOE_ID": 23424903, "tippecanoe:sum:WOE_ID": 23424903, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424903, "tippecanoe:min:WOE_ID_EH": 23424903, "tippecanoe:sum:WOE_ID_EH": 23424903, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_LABEL": 4.6, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 165.084004, "tippecanoe:min:LABEL_X": 165.084004, "tippecanoe:sum:LABEL_X": 165.084004, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -21.064697, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -21.064697, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320641, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 1159320641, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 287800, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 10770, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424903, "tippecanoe:mean:WOE_ID_EH": 23424903, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.6, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 165.084004, "tippecanoe:mean:LABEL_Y": -21.064697, "tippecanoe:mean:NE_ID": 1159320641, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.232422, 63.233627 ], [ 175.209961, 61.835413 ], [ 173.540039, 60.348696 ], [ 170.112305, 60.152442 ], [ 167.958984, 61.459771 ], [ 169.409180, 63.035039 ], [ 173.232422, 63.233627 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 86.660156, 68.688521 ], [ 86.835938, 70.363091 ], [ 91.450195, 71.031249 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821777fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.992188, 64.377941 ], [ 169.409180, 63.035039 ], [ 167.958984, 61.459771 ], [ 164.443359, 61.143235 ], [ 161.938477, 62.369996 ], [ 163.037109, 64.014496 ], [ 166.992188, 64.377941 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82176ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 2, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 299882, "tippecanoe:sum:POP_EST": 1189835, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 21, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 6430, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 46849720, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 46849720, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": 166.908762, "tippecanoe:sum:LABEL_X": 344.884189, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -15.37153, "tippecanoe:min:LABEL_Y": -17.826099, "tippecanoe:sum:LABEL_Y": -33.197629, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 2318642046, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 594917.5, "tippecanoe:mean:POP_RANK": 10.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3215, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424860, "tippecanoe:mean:WOE_ID_EH": 23424860, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 172.4420945, "tippecanoe:mean:LABEL_Y": -16.5988145, "tippecanoe:mean:NE_ID": 1159321023, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.165039, 64.774125 ], [ 180.878906, 63.292939 ], [ 178.857422, 61.876870 ], [ 175.209961, 61.835413 ], [ 173.232422, 63.233627 ], [ 175.078125, 64.755390 ], [ 179.165039, 64.774125 ] ] ], [ [ [ -180.834961, 64.774125 ], [ -179.121094, 63.292939 ], [ -181.142578, 61.876870 ], [ -184.790039, 61.835413 ], [ -186.767578, 63.233627 ], [ -184.921875, 64.755390 ], [ -180.834961, 64.774125 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821767fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 669823, "tippecanoe:sum:POP_EST": 669823, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1589, "tippecanoe:min:GDP_MD": 1589, "tippecanoe:sum:GDP_MD": 1589, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424766, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 23424766, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424766, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 23424766, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 159.170468, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 159.170468, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -8.029548, "tippecanoe:sum:LABEL_Y": -8.029548, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321249, "tippecanoe:min:NE_ID": 1159321249, "tippecanoe:sum:NE_ID": 1159321249, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 669823, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1589, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424766, "tippecanoe:mean:WOE_ID_EH": 23424766, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 159.170468, "tippecanoe:mean:LABEL_Y": -8.029548, "tippecanoe:mean:NE_ID": 1159321249, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.880859, 66.196009 ], [ 175.078125, 64.755390 ], [ 173.232422, 63.233627 ], [ 169.409180, 63.035039 ], [ 166.992188, 64.377941 ], [ 168.530273, 66.000150 ], [ 172.880859, 66.196009 ] ] ] } } ] } ] } diff --git a/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json b/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json index 7064a425..658f2343 100644 --- a/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json +++ b/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json @@ -1,30 +1,14 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "bin": "811cfffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 31, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 56494501, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 102, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 291526, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 16152, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 187399089, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 187399089, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 72, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 88, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -792, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 29.7, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 70, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -107.7326, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 8.617449, "tippecanoe:sum:LABEL_Y": 134.44802099999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 9274567670, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 3.875, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.125, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.25, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 7061812.625, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 36440.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424886.125, "tippecanoe:mean:WOE_ID_EH": 23424886.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7125, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -13.466575, "tippecanoe:mean:LABEL_Y": 16.806002624999999, "tippecanoe:mean:NE_ID": 1159320958.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.053711, 47.857403 ], [ -136.691895, 45.336702 ], [ -138.449707, 41.459195 ], [ -143.854980, 41.211722 ], [ -147.458496, 44.087585 ], [ -145.502930, 47.234490 ], [ -141.723633, 47.413220 ], [ -140.053711, 47.857403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811cbffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 35, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 81, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 9, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 63, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 60, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 68, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 68, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 26047555, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 118, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 28263, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 238179, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 28223, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 337140586, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 337140586, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 183, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 224, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 96, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -563, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -886, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 64.5, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 133.5, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -932.2607110000001, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 15.458829, "tippecanoe:sum:LABEL_Y": 307.87920399999998, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 16230490162, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:mean:LABELRANK": 5.785714285714286, "tippecanoe:mean:ADM0_DIF": 0.6428571428571429, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.07142857142857143, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4.285714285714286, "tippecanoe:mean:MAPCOLOR9": 4.857142857142857, "tippecanoe:mean:MAPCOLOR13": 4.857142857142857, "tippecanoe:mean:POP_EST": 1860539.642857143, "tippecanoe:mean:POP_RANK": 8.428571428571429, "tippecanoe:mean:POP_YEAR": 2018.7857142857143, "tippecanoe:mean:GDP_MD": 17012.785714285714, "tippecanoe:mean:GDP_YEAR": 2015.9285714285714, "tippecanoe:mean:WOE_ID": 24081470.42857143, "tippecanoe:mean:WOE_ID_EH": 24081470.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.071428571428572, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6.857142857142857, "tippecanoe:mean:TINY": -40.214285714285718, "tippecanoe:mean:HOMEPART": -63.285714285714288, "tippecanoe:mean:MIN_ZOOM": 0.35714285714285717, "tippecanoe:mean:MIN_LABEL": 4.607142857142857, "tippecanoe:mean:MAX_LABEL": 9.535714285714287, "tippecanoe:mean:LABEL_X": -66.5900507857143, "tippecanoe:mean:LABEL_Y": 21.991371714285714, "tippecanoe:mean:NE_ID": 1159320725.857143, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.786621, 50.527397 ], [ -148.403320, 50.429518 ], [ -146.755371, 48.092757 ], [ -145.502930, 47.234490 ], [ -147.458496, 44.087585 ], [ -153.039551, 43.436966 ], [ -156.027832, 46.905246 ], [ -153.786621, 50.527397 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8122fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.024902, 56.992883 ], [ -166.003418, 55.416544 ], [ -163.674316, 53.774689 ], [ -165.607910, 49.894634 ], [ -171.870117, 49.052270 ], [ -177.055664, 52.119999 ], [ -175.737305, 56.194481 ], [ -168.024902, 56.992883 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81363ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.744629, 37.683820 ], [ -142.316895, 34.452218 ], [ -144.162598, 30.562261 ], [ -149.348145, 29.897806 ], [ -152.841797, 33.119150 ], [ -151.127930, 37.037640 ], [ -145.744629, 37.683820 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8136fffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 3428, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4033, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 4028, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 46849769, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 46849769, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 56, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -89.801781, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -107.292315, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 2318641442, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1714, "tippecanoe:mean:POP_RANK": 2.5, "tippecanoe:mean:POP_YEAR": 2016.5, "tippecanoe:mean:GDP_MD": 141, "tippecanoe:mean:GDP_YEAR": 2014, "tippecanoe:mean:WOE_ID": 23424884.5, "tippecanoe:mean:WOE_ID_EH": 23424884.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 28, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -44.9008905, "tippecanoe:mean:LABEL_Y": -53.6461575, "tippecanoe:mean:NE_ID": 1159320721, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.162598, 30.562261 ], [ -140.910645, 27.059126 ], [ -142.712402, 22.877440 ], [ -147.700195, 22.167058 ], [ -151.040039, 25.661333 ], [ -149.348145, 29.897806 ], [ -144.162598, 30.562261 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8136bffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 46849430, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849430, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 43, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -209.80598200000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -121.16396399999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 4048275965, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21296916.666666669, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 242587.66666666667, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 15616476.666666666, "tippecanoe:mean:WOE_ID_EH": 15616476.666666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14.333333333333334, "tippecanoe:mean:LONG_LEN": 14.333333333333334, "tippecanoe:mean:ABBREV_LEN": 8.333333333333334, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 3.8000000000000004, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -69.93532733333335, "tippecanoe:mean:LABEL_Y": -40.387988, "tippecanoe:mean:NE_ID": 1349425321.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.841797, 33.119150 ], [ -149.348145, 29.897806 ], [ -151.040039, 25.661333 ], [ -156.093750, 24.686952 ], [ -159.565430, 27.916767 ], [ -158.049316, 32.119801 ], [ -152.841797, 33.119150 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8128fffffffffff", "tippecanoe:count:scalerank": 30, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 30, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 30, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 30, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 60, "tippecanoe:count:GEOU_DIF": 30, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 30, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 30, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 3, "tippecanoe:count:MAPCOLOR7": 30, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 95, "tippecanoe:count:MAPCOLOR8": 30, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 86, "tippecanoe:count:MAPCOLOR9": 30, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 106, "tippecanoe:count:MAPCOLOR13": 30, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 84, "tippecanoe:count:POP_EST": 30, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 653845935, "tippecanoe:count:POP_RANK": 30, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 377, "tippecanoe:count:POP_YEAR": 30, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 60563, "tippecanoe:count:GDP_MD": 30, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 4652105, "tippecanoe:count:GDP_YEAR": 30, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 60537, "tippecanoe:count:WOE_ID": 30, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 567060578, "tippecanoe:count:WOE_ID_EH": 30, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 637335789, "tippecanoe:count:ADM0_A3_UN": 30, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2970, "tippecanoe:count:ADM0_A3_WB": 30, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2970, "tippecanoe:count:NAME_LEN": 30, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 245, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 251, "tippecanoe:count:ABBREV_LEN": 30, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 140, "tippecanoe:count:TINY": 30, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2664, "tippecanoe:count:HOMEPART": 30, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -270, "tippecanoe:count:MIN_ZOOM": 30, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 21, "tippecanoe:count:MIN_LABEL": 30, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 117, "tippecanoe:count:MAX_LABEL": 30, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 259.9, "tippecanoe:count:LABEL_X": 30, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 21.555839, "tippecanoe:sum:LABEL_X": 1192.538962, "tippecanoe:count:LABEL_Y": 30, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 939.4510879999998, "tippecanoe:count:NE_ID": 30, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 35349939856, "tippecanoe:mean:scalerank": 0.36666666666666666, "tippecanoe:mean:LABELRANK": 4.233333333333333, "tippecanoe:mean:ADM0_DIF": 0.1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.8666666666666669, "tippecanoe:mean:MAPCOLOR9": 3.533333333333333, "tippecanoe:mean:MAPCOLOR13": 2.8, "tippecanoe:mean:POP_EST": 21794864.5, "tippecanoe:mean:POP_RANK": 12.566666666666667, "tippecanoe:mean:POP_YEAR": 2018.7666666666667, "tippecanoe:mean:GDP_MD": 155070.16666666667, "tippecanoe:mean:GDP_YEAR": 2017.9, "tippecanoe:mean:WOE_ID": 18902019.266666667, "tippecanoe:mean:WOE_ID_EH": 21244526.3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.166666666666666, "tippecanoe:mean:LONG_LEN": 8.366666666666668, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -88.8, "tippecanoe:mean:HOMEPART": -9, "tippecanoe:mean:MIN_ZOOM": 0.7, "tippecanoe:mean:MIN_LABEL": 3.9, "tippecanoe:mean:MAX_LABEL": 8.663333333333333, "tippecanoe:mean:LABEL_X": 39.751298733333339, "tippecanoe:mean:LABEL_Y": 31.31503626666666, "tippecanoe:mean:NE_ID": 1178331328.5333334, "tippecanoe:count": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.112793, 50.986099 ], [ -120.915527, 49.396675 ], [ -119.223633, 47.798397 ], [ -122.124023, 44.056012 ], [ -127.968750, 43.421009 ], [ -131.286621, 46.422713 ], [ -128.913574, 50.148746 ], [ -123.112793, 50.986099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8112fffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 41, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 325740912, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16142, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 568260, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549173, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044401, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 86, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 27.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 62.5, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 582.38741, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 326.084598, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568164, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.375, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.125, "tippecanoe:mean:POP_EST": 40717614, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 71032.5, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 17568646.625, "tippecanoe:mean:WOE_ID_EH": 23005550.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 10.75, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0.625, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 7.8125, "tippecanoe:mean:LABEL_X": 72.79842625, "tippecanoe:mean:LABEL_Y": 40.76057475, "tippecanoe:mean:NE_ID": 1159321020.5, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.235840, 55.478853 ], [ -109.995117, 51.754240 ], [ -112.785645, 48.004625 ], [ -119.223633, 47.798397 ], [ -120.915527, 49.396675 ], [ -123.112793, 50.986099 ], [ -121.442871, 54.914514 ], [ -114.235840, 55.478853 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8127bffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 22, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 29, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 30, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 39, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 1736062529, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 123, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16153, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 22884216, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424781, "tippecanoe:sum:WOE_ID": 188839895, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424781, "tippecanoe:sum:WOE_ID_EH": 188839895, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 58, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 71, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 60.7, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 942.240656, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 232.15936599999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320471, "tippecanoe:sum:NE_ID": 9274567810, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.375, "tippecanoe:mean:MAPCOLOR8": 3.625, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 4.875, "tippecanoe:mean:POP_EST": 217007816.125, "tippecanoe:mean:POP_RANK": 15.375, "tippecanoe:mean:POP_YEAR": 2019.125, "tippecanoe:mean:GDP_MD": 2860527, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23604986.875, "tippecanoe:mean:WOE_ID_EH": 23604986.875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.25, "tippecanoe:mean:LONG_LEN": 8.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.5875, "tippecanoe:mean:LABEL_X": 117.780082, "tippecanoe:mean:LABEL_Y": 29.019920749999998, "tippecanoe:mean:NE_ID": 1159320976.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.995117, 51.754240 ], [ -102.897949, 51.563412 ], [ -99.909668, 47.472663 ], [ -102.326660, 45.197522 ], [ -103.535156, 44.087585 ], [ -109.797363, 44.418088 ], [ -112.785645, 48.004625 ], [ -109.995117, 51.754240 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81237ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 198717, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 4037, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 862, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 4022, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -342.30080599999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -32.685095000000007, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 2318642556, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 99358.5, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 431, "tippecanoe:mean:GDP_YEAR": 2011, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.5, "tippecanoe:mean:LONG_LEN": 4.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -171.15040299999999, "tippecanoe:mean:LABEL_Y": -16.342547500000003, "tippecanoe:mean:NE_ID": 1159321278, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.254395, 44.746733 ], [ -168.881836, 41.541478 ], [ -170.266113, 37.142803 ], [ -175.561523, 35.746512 ], [ -180.043945, 38.736946 ], [ -179.165039, 43.341160 ], [ -173.254395, 44.746733 ] ] ], [ [ [ 186.745605, 44.746733 ], [ 191.118164, 41.541478 ], [ 189.733887, 37.142803 ], [ 184.438477, 35.746512 ], [ 179.956055, 38.736946 ], [ 180.834961, 43.341160 ], [ 186.745605, 44.746733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8112bffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 61, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 42, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 51, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 46, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 195489159, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6322700, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317101037, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317101037, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 96, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 104, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 47.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 116.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 300.14189400000006, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 761.8934709999999, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320427, "tippecanoe:sum:NE_ID": 16230492268, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.357142857142857, "tippecanoe:mean:ADM0_DIF": 0.21428571428571428, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.642857142857143, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 13963511.357142857, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 451621.4285714286, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650074.07142857, "tippecanoe:mean:WOE_ID_EH": 22650074.07142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.857142857142857, "tippecanoe:mean:LONG_LEN": 7.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3714285714285716, "tippecanoe:mean:MAX_LABEL": 8.335714285714286, "tippecanoe:mean:LABEL_X": 21.43870671428572, "tippecanoe:mean:LABEL_Y": 54.4209622142857, "tippecanoe:mean:NE_ID": 1159320876.2857145, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.848145, 58.043004 ], [ -121.442871, 54.914514 ], [ -123.112793, 50.986099 ], [ -128.913574, 50.148746 ], [ -133.857422, 52.842595 ], [ -133.527832, 56.764768 ], [ -126.848145, 58.043004 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81227ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 328239523, "tippecanoe:sum:POP_EST": 328239523, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 21433226, "tippecanoe:sum:GDP_MD": 21433226, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424977, "tippecanoe:min:WOE_ID": 23424977, "tippecanoe:sum:WOE_ID": 23424977, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424977, "tippecanoe:min:WOE_ID_EH": 23424977, "tippecanoe:sum:WOE_ID_EH": 23424977, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 24, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -97.482602, "tippecanoe:min:LABEL_X": -97.482602, "tippecanoe:sum:LABEL_X": -97.482602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.538479, "tippecanoe:min:LABEL_Y": 39.538479, "tippecanoe:sum:LABEL_Y": 39.538479, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159321369, "tippecanoe:sum:NE_ID": 1159321369, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 328239523, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21433226, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424977, "tippecanoe:mean:WOE_ID_EH": 23424977, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 24, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -97.482602, "tippecanoe:mean:LABEL_Y": 39.538479, "tippecanoe:mean:NE_ID": 1159321369, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.055664, 52.119999 ], [ -171.870117, 49.052270 ], [ -173.254395, 44.746733 ], [ -179.165039, 43.341160 ], [ -184.372559, 46.179830 ], [ -183.691406, 50.639010 ], [ -177.055664, 52.119999 ] ] ], [ [ [ 182.944336, 52.119999 ], [ 188.129883, 49.052270 ], [ 186.745605, 44.746733 ], [ 180.834961, 43.341160 ], [ 175.627441, 46.179830 ], [ 176.308594, 50.639010 ], [ 182.944336, 52.119999 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81293ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 59706400, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 4471, "tippecanoe:sum:GDP_MD": 355902, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849935, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849935, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 55.132998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -56.242452, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321289, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 29853200, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 177951, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424967.5, "tippecanoe:mean:WOE_ID_EH": 23424967.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 15.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 27.566499, "tippecanoe:mean:LABEL_Y": -28.121226, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.706543, 36.580247 ], [ -118.806152, 32.787275 ], [ -121.333008, 28.652031 ], [ -126.430664, 28.323725 ], [ -129.287109, 31.952162 ], [ -127.133789, 36.084621 ], [ -121.706543, 36.580247 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8171bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 183.647461, 11.049038 ], [ 186.613770, 7.972198 ], [ 185.690918, 3.820408 ], [ 181.977539, 2.899153 ], [ 179.208984, 5.900189 ], [ 179.780273, 9.622414 ], [ 181.757812, 10.466206 ], [ 183.647461, 11.049038 ] ] ], [ [ [ -176.352539, 11.049038 ], [ -173.386230, 7.972198 ], [ -174.309082, 3.820408 ], [ -178.022461, 2.899153 ], [ -180.791016, 5.900189 ], [ -180.219727, 9.622414 ], [ -178.242188, 10.466206 ], [ -176.352539, 11.049038 ] ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8126fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 40.094882 ], [ -95.251465, 39.334297 ], [ -93.273926, 35.083956 ], [ -96.657715, 31.615966 ], [ -102.084961, 32.268555 ], [ -104.458008, 36.491973 ], [ -101.030273, 40.094882 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81447ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4917000, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 4917000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 206928, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 206928, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID": 23424916, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424916, "tippecanoe:sum:WOE_ID_EH": 23424916, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 2, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 172.787, "tippecanoe:sum:LABEL_X": 172.787, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -39.759, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -39.759, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159321135, "tippecanoe:sum:NE_ID": 1159321135, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 4917000, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206928, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424916, "tippecanoe:mean:WOE_ID_EH": 23424916, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 172.787, "tippecanoe:mean:LABEL_Y": -39.759, "tippecanoe:mean:NE_ID": 1159321135, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.273926, 35.083956 ], [ -88.066406, 34.052659 ], [ -86.550293, 29.764377 ], [ -89.802246, 26.431228 ], [ -94.746094, 27.254630 ], [ -96.657715, 31.615966 ], [ -93.273926, 35.083956 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8148bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.084961, 32.268555 ], [ -96.657715, 31.615966 ], [ -94.746094, 27.254630 ], [ -97.910156, 23.584126 ], [ -103.007812, 24.126702 ], [ -105.249023, 28.439714 ], [ -102.084961, 32.268555 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81267ffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 17, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 32, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 35, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 60, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 11558, "tippecanoe:sum:POP_EST": 146754651, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 16151, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 60, "tippecanoe:sum:GDP_MD": 1719431, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424989, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 187399145, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424989, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 187399145, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 95, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -386, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -192, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 29.999999999999998, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": 203.14010299999993, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:sum:LABEL_Y": -37.718520999999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 9274568086, "tippecanoe:mean:scalerank": 2.125, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.375, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 18344331.375, "tippecanoe:mean:POP_RANK": 10.375, "tippecanoe:mean:POP_YEAR": 2018.875, "tippecanoe:mean:GDP_MD": 214928.875, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23424893.125, "tippecanoe:mean:WOE_ID_EH": 23424893.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 11.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -48.25, "tippecanoe:mean:HOMEPART": -24, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7499999999999997, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 25.39251287499999, "tippecanoe:mean:LABEL_Y": -4.714815124999999, "tippecanoe:mean:NE_ID": 1159321010.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.472168, 42.439674 ], [ -85.693359, 41.162114 ], [ -84.594727, 37.107765 ], [ -88.066406, 34.052659 ], [ -93.273926, 35.083956 ], [ -95.251465, 39.334297 ], [ -92.812500, 41.459195 ], [ -91.472168, 42.439674 ] ] ] } } , { "type": "Feature", "properties": { "bin": "81377ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -138.449707, 41.459195 ], [ -135.329590, 38.548165 ], [ -136.208496, 36.544949 ], [ -137.175293, 34.759666 ], [ -142.316895, 34.452218 ], [ -145.744629, 37.683820 ], [ -143.854980, 41.211722 ], [ -138.449707, 41.459195 ] ] ] } } , @@ -32,18 +16,16 @@ , { "type": "Feature", "properties": { "bin": "81233ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.388672, 42.455888 ], [ -159.938965, 39.095963 ], [ -161.652832, 34.994004 ], [ -166.530762, 33.961586 ], [ -170.266113, 37.142803 ], [ -168.881836, 41.541478 ], [ -163.388672, 42.455888 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81487ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.269043, 32.861132 ], [ -110.654297, 28.729130 ], [ -113.466797, 24.666986 ], [ -118.630371, 24.666986 ], [ -121.333008, 28.652031 ], [ -118.806152, 32.787275 ], [ -113.269043, 32.861132 ] ] ] } } -, { "type": "Feature", "properties": { "bin": "81297ffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2125268, "tippecanoe:sum:POP_EST": 6923495, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 36, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 18340, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 33082, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 70274622, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 70274622, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 25.5, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 28.246639, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 69.534021, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -72.15809, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 3477962573, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 2307831.6666666667, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 11027.333333333334, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424874, "tippecanoe:mean:WOE_ID_EH": 23424874, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 7.333333333333333, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.6666666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 23.178006999999999, "tippecanoe:mean:LABEL_Y": -24.052696666666667, "tippecanoe:mean:NE_ID": 1159320857.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.231934, 39.436193 ], [ -127.133789, 36.084621 ], [ -129.287109, 31.952162 ], [ -134.099121, 31.278551 ], [ -137.175293, 34.759666 ], [ -136.208496, 36.544949 ], [ -135.329590, 38.548165 ], [ -130.231934, 39.436193 ] ] ] } } , { "type": "Feature", "properties": { "bin": "811d3ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 4941444, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 5407660, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 37, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 388698, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 419053, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8074, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424803, "tippecanoe:sum:WOE_ID": 93699292, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699292, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 37, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -7.058429, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -72.865979, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 53.078726, "tippecanoe:sum:LABEL_Y": 254.36300300000006, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 4637282894, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 2.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 8.75, "tippecanoe:mean:POP_EST": 1351915, "tippecanoe:mean:POP_RANK": 9.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 104763.25, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424823, "tippecanoe:mean:WOE_ID_EH": 23424823, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 9.25, "tippecanoe:mean:ABBREV_LEN": 6.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.675, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": -18.21649475, "tippecanoe:mean:LABEL_Y": 63.59075075000001, "tippecanoe:mean:NE_ID": 1159320723.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.680176, 59.164668 ], [ -133.527832, 56.764768 ], [ -133.857422, 52.842595 ], [ -138.999023, 51.522416 ], [ -142.448730, 52.975108 ], [ -144.426270, 53.212612 ], [ -145.612793, 56.571589 ], [ -139.680176, 59.164668 ] ] ] } } , { "type": "Feature", "properties": { "bin": "8126bffffffffff", "tippecanoe:count:scalerank": 11, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 9, "tippecanoe:count:LABELRANK": 11, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 40, "tippecanoe:count:ADM0_DIF": 11, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 11, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 22, "tippecanoe:count:GEOU_DIF": 11, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 11, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 11, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 11, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 35, "tippecanoe:count:MAPCOLOR8": 11, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 11, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 71, "tippecanoe:count:POP_EST": 11, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 1924699618, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 152, "tippecanoe:count:POP_YEAR": 11, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 22206, "tippecanoe:count:GDP_MD": 11, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 5763900, "tippecanoe:count:GDP_YEAR": 11, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 22206, "tippecanoe:count:WOE_ID": 11, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 234248627, "tippecanoe:count:WOE_ID_EH": 11, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 257673586, "tippecanoe:count:ADM0_A3_UN": 11, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1089, "tippecanoe:count:ADM0_A3_WB": 11, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1089, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 99, "tippecanoe:count:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 117, "tippecanoe:count:ABBREV_LEN": 11, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 64, "tippecanoe:count:TINY": 11, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -886, "tippecanoe:count:HOMEPART": 11, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -89, "tippecanoe:count:MIN_ZOOM": 11, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 11, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 34.6, "tippecanoe:count:MAX_LABEL": 11, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 88.9, "tippecanoe:count:LABEL_X": 11, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 1168.831836, "tippecanoe:count:LABEL_Y": 11, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": 71.66068499999997, "tippecanoe:count:NE_ID": 11, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 12752530669, "tippecanoe:mean:scalerank": 0.8181818181818182, "tippecanoe:mean:LABELRANK": 3.6363636363636364, "tippecanoe:mean:ADM0_DIF": 0.09090909090909091, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1818181818181818, "tippecanoe:mean:MAPCOLOR8": 3.5454545454545456, "tippecanoe:mean:MAPCOLOR9": 4.636363636363637, "tippecanoe:mean:MAPCOLOR13": 6.454545454545454, "tippecanoe:mean:POP_EST": 174972692.54545454, "tippecanoe:mean:POP_RANK": 13.818181818181819, "tippecanoe:mean:POP_YEAR": 2018.7272727272728, "tippecanoe:mean:GDP_MD": 523990.9090909091, "tippecanoe:mean:GDP_YEAR": 2018.7272727272728, "tippecanoe:mean:WOE_ID": 21295329.727272728, "tippecanoe:mean:WOE_ID_EH": 23424871.454545455, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 10.636363636363637, "tippecanoe:mean:ABBREV_LEN": 5.818181818181818, "tippecanoe:mean:TINY": -80.54545454545455, "tippecanoe:mean:HOMEPART": -8.090909090909092, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1454545454545457, "tippecanoe:mean:MAX_LABEL": 8.081818181818182, "tippecanoe:mean:LABEL_X": 106.25743963636364, "tippecanoe:mean:LABEL_Y": 6.5146077272727249, "tippecanoe:mean:NE_ID": 1159320969.909091, "tippecanoe:count": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.797363, 44.418088 ], [ -103.535156, 44.087585 ], [ -101.030273, 40.094882 ], [ -104.458008, 36.491973 ], [ -110.258789, 36.791691 ], [ -113.049316, 40.713956 ], [ -109.797363, 44.418088 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8129bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.049316, 40.713956 ], [ -110.258789, 36.791691 ], [ -113.269043, 32.861132 ], [ -118.806152, 32.787275 ], [ -121.706543, 36.580247 ], [ -119.003906, 40.563895 ], [ -113.049316, 40.713956 ] ] ] } } -, { "type": "Feature", "properties": { "bin": "81263ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 20, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 17, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 356333, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 7912, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8073, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 93699362, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 93699362, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -92, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 18, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 40, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 583.252187, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 42.948166, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 4637284582, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.75, "tippecanoe:mean:MAPCOLOR8": 4.25, "tippecanoe:mean:MAPCOLOR9": 1.75, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:mean:POP_EST": 89083.25, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1978, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23424840.5, "tippecanoe:mean:WOE_ID_EH": 23424840.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 15.75, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -23, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.81304675, "tippecanoe:mean:LABEL_Y": 10.7370415, "tippecanoe:mean:NE_ID": 1159321145.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.909668, 47.472663 ], [ -93.405762, 46.634351 ], [ -91.472168, 42.439674 ], [ -92.812500, 41.459195 ], [ -95.251465, 39.334297 ], [ -101.030273, 40.094882 ], [ -103.535156, 44.087585 ], [ -102.326660, 45.197522 ], [ -99.909668, 47.472663 ] ] ] } } , +{ "type": "Feature", "properties": { "bin": "8122fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.024902, 56.992883 ], [ -166.003418, 55.416544 ], [ -163.674316, 53.774689 ], [ -165.607910, 49.894634 ], [ -171.870117, 49.052270 ], [ -177.055664, 52.119999 ], [ -175.737305, 56.194481 ], [ -168.024902, 56.992883 ] ] ] } } +, { "type": "Feature", "properties": { "bin": "81283ffffffffff", "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 71, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 61, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 73, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 70, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 112, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 431702297.3, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 249, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 36337, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 402757, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36329, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 351373220, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 374798259, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 142, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 162, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 83, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1580, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 18, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 59.400000000000009, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 148.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 673.251737, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": -18.91164, "tippecanoe:sum:LABEL_Y": -59.005614, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 20867779388, "tippecanoe:mean:scalerank": 0.4444444444444444, "tippecanoe:mean:LABELRANK": 3.9444444444444448, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.388888888888889, "tippecanoe:mean:MAPCOLOR8": 4.055555555555555, "tippecanoe:mean:MAPCOLOR9": 3.888888888888889, "tippecanoe:mean:MAPCOLOR13": 6.222222222222222, "tippecanoe:mean:POP_EST": 23983460.961111115, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2018.7222222222222, "tippecanoe:mean:GDP_MD": 22375.38888888889, "tippecanoe:mean:GDP_YEAR": 2018.2777777777779, "tippecanoe:mean:WOE_ID": 19520734.444444445, "tippecanoe:mean:WOE_ID_EH": 20822125.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.888888888888889, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4.611111111111111, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.2222222222222222, "tippecanoe:mean:MIN_LABEL": 3.3000000000000004, "tippecanoe:mean:MAX_LABEL": 8.261111111111111, "tippecanoe:mean:LABEL_X": 37.402874277777787, "tippecanoe:mean:LABEL_Y": -3.278089666666667, "tippecanoe:mean:NE_ID": 1159321077.1111112, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124023, 44.056012 ], [ -119.003906, 40.563895 ], [ -121.706543, 36.580247 ], [ -127.133789, 36.084621 ], [ -130.231934, 39.436193 ], [ -127.968750, 43.421009 ], [ -122.124023, 44.056012 ] ] ] } } , { "type": "Feature", "properties": { "bin": "8128bffffffffff", "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 214757916, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 425407, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549045, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549045, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 53, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -493, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51.5, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 494.7071010000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 127.14571000000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955925022, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": -9.333333333333334, "tippecanoe:mean:POP_EST": 35792986, "tippecanoe:mean:POP_RANK": 12.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 70901.16666666667, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424840.833333333, "tippecanoe:mean:WOE_ID_EH": 23424840.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.833333333333334, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82.16666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.9166666666666667, "tippecanoe:mean:MAX_LABEL": 8.583333333333334, "tippecanoe:mean:LABEL_X": 82.45118350000002, "tippecanoe:mean:LABEL_Y": 21.190951666666668, "tippecanoe:mean:NE_ID": 1159320837, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.785645, 48.004625 ], [ -109.797363, 44.418088 ], [ -113.049316, 40.713956 ], [ -119.003906, 40.563895 ], [ -122.124023, 44.056012 ], [ -119.223633, 47.798397 ], [ -112.785645, 48.004625 ] ] ] } } @@ -52,16 +34,34 @@ , { "type": "Feature", "properties": { "bin": "81373ffffffffff", "tippecanoe:count:scalerank": 12, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 12, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 50, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 12, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 24, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 36, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 76, "tippecanoe:count:POP_EST": 12, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 110589, "tippecanoe:sum:POP_EST": 304418803, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 146, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:GDP_MD": 12, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 824, "tippecanoe:sum:GDP_MD": 3541305, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 24223, "tippecanoe:count:WOE_ID": 12, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 234248644, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 282223543, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 114, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 128, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 12, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -779, "tippecanoe:count:HOMEPART": 12, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 45.2, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 104.2, "tippecanoe:count:LABEL_X": 12, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -72.90016, "tippecanoe:sum:LABEL_X": -672.618505, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": 90.419529, "tippecanoe:count:NE_ID": 12, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 13911851950, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 25368233.583333333, "tippecanoe:mean:POP_RANK": 12.166666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 295108.75, "tippecanoe:mean:GDP_YEAR": 2018.5833333333333, "tippecanoe:mean:WOE_ID": 19520720.333333333, "tippecanoe:mean:WOE_ID_EH": 23518628.583333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4.916666666666667, "tippecanoe:mean:TINY": -64.91666666666667, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.766666666666667, "tippecanoe:mean:MAX_LABEL": 8.683333333333334, "tippecanoe:mean:LABEL_X": -56.05154208333334, "tippecanoe:mean:LABEL_Y": 7.53496075, "tippecanoe:mean:NE_ID": 1159320995.8333333, "tippecanoe:count": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.458496, 44.087585 ], [ -143.854980, 41.211722 ], [ -145.744629, 37.683820 ], [ -151.127930, 37.037640 ], [ -154.775391, 39.909736 ], [ -153.039551, 43.436966 ], [ -147.458496, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81287ffffffffff", "tippecanoe:count:scalerank": 16, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 16, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 60, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 16, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 52, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 46, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 60, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 108, "tippecanoe:count:POP_EST": 16, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 413068848, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 219, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 32304, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 807434, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 32304, "tippecanoe:count:WOE_ID": 16, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 374797545, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 374797545, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 137, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 164, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 86, "tippecanoe:count:TINY": 16, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1380, "tippecanoe:count:HOMEPART": 16, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 16, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 54.900000000000009, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 134.7, "tippecanoe:count:LABEL_X": 16, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": -9.460379, "tippecanoe:sum:LABEL_X": 116.745203, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:max:LABEL_Y": 17.446195, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": 97.89065400000003, "tippecanoe:count:NE_ID": 16, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 18549132476, "tippecanoe:mean:scalerank": 0.1875, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 2.875, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:mean:POP_EST": 25816803, "tippecanoe:mean:POP_RANK": 13.6875, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 50464.625, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424846.5625, "tippecanoe:mean:WOE_ID_EH": 23424846.5625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5625, "tippecanoe:mean:LONG_LEN": 10.25, "tippecanoe:mean:ABBREV_LEN": 5.375, "tippecanoe:mean:TINY": -86.25, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4312500000000005, "tippecanoe:mean:MAX_LABEL": 8.41875, "tippecanoe:mean:LABEL_X": 7.2965751875, "tippecanoe:mean:LABEL_Y": 6.118165875000002, "tippecanoe:mean:NE_ID": 1159320779.75, "tippecanoe:count": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.286621, 46.422713 ], [ -127.968750, 43.421009 ], [ -130.231934, 39.436193 ], [ -135.329590, 38.548165 ], [ -138.449707, 41.459195 ], [ -136.691895, 45.336702 ], [ -131.286621, 46.422713 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81287ffffffffff", "tippecanoe:count:scalerank": 21, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 21, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 21, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 21, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 42, "tippecanoe:count:GEOU_DIF": 21, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 21, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 21, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 21, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 75, "tippecanoe:count:MAPCOLOR8": 21, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 64, "tippecanoe:count:MAPCOLOR9": 21, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 90, "tippecanoe:count:MAPCOLOR13": 21, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 146, "tippecanoe:count:POP_EST": 21, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 679786972, "tippecanoe:count:POP_RANK": 21, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 294, "tippecanoe:count:POP_YEAR": 21, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 42399, "tippecanoe:count:GDP_MD": 21, "tippecanoe:max:GDP_MD": 2715518, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 6605927, "tippecanoe:count:GDP_YEAR": 21, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 42399, "tippecanoe:count:WOE_ID": 21, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 445072106, "tippecanoe:count:WOE_ID_EH": 21, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 491922015, "tippecanoe:count:ADM0_A3_UN": 21, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2079, "tippecanoe:count:ADM0_A3_WB": 21, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2079, "tippecanoe:count:NAME_LEN": 21, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 164, "tippecanoe:count:LONG_LEN": 21, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 191, "tippecanoe:count:ABBREV_LEN": 21, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 104, "tippecanoe:count:TINY": 21, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1875, "tippecanoe:count:HOMEPART": 21, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 21, "tippecanoe:count:MIN_ZOOM": 21, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 21, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.6, "tippecanoe:count:MAX_LABEL": 21, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 169.1, "tippecanoe:count:LABEL_X": 21, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": 21.184831999999994, "tippecanoe:count:LABEL_Y": 21, "tippecanoe:max:LABEL_Y": 61.357092, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": 288.647513, "tippecanoe:count:NE_ID": 21, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 24345736927, "tippecanoe:mean:scalerank": 0.14285714285714286, "tippecanoe:mean:LABELRANK": 3.4285714285714286, "tippecanoe:mean:ADM0_DIF": 0.047619047619047619, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5714285714285718, "tippecanoe:mean:MAPCOLOR8": 3.0476190476190476, "tippecanoe:mean:MAPCOLOR9": 4.285714285714286, "tippecanoe:mean:MAPCOLOR13": 6.9523809523809529, "tippecanoe:mean:POP_EST": 32370808.19047619, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 314567.95238095239, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 21193909.80952381, "tippecanoe:mean:WOE_ID_EH": 23424857.85714286, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.809523809523809, "tippecanoe:mean:LONG_LEN": 9.095238095238095, "tippecanoe:mean:ABBREV_LEN": 4.9523809523809529, "tippecanoe:mean:TINY": -89.28571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1714285714285714, "tippecanoe:mean:MAX_LABEL": 8.052380952380953, "tippecanoe:mean:LABEL_X": 1.0088015238095234, "tippecanoe:mean:LABEL_Y": 13.745119666666668, "tippecanoe:mean:NE_ID": 1159320806.047619, "tippecanoe:count": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.286621, 46.422713 ], [ -127.968750, 43.421009 ], [ -130.231934, 39.436193 ], [ -135.329590, 38.548165 ], [ -138.449707, 41.459195 ], [ -136.691895, 45.336702 ], [ -131.286621, 46.422713 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81447ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4917000, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 4917000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 206928, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 206928, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID": 23424916, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424916, "tippecanoe:sum:WOE_ID_EH": 23424916, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 2, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 172.787, "tippecanoe:sum:LABEL_X": 172.787, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -39.759, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -39.759, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159321135, "tippecanoe:sum:NE_ID": 1159321135, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 4917000, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206928, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424916, "tippecanoe:mean:WOE_ID_EH": 23424916, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 172.787, "tippecanoe:mean:LABEL_Y": -39.759, "tippecanoe:mean:NE_ID": 1159321135, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.273926, 35.083956 ], [ -88.066406, 34.052659 ], [ -86.550293, 29.764377 ], [ -89.802246, 26.431228 ], [ -94.746094, 27.254630 ], [ -96.657715, 31.615966 ], [ -93.273926, 35.083956 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "811cfffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 31, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 56494501, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 102, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 291526, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 16152, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 187399089, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 187399089, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 72, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 88, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -792, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 29.7, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 70, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -107.7326, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 8.617449, "tippecanoe:sum:LABEL_Y": 134.44802099999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 9274567670, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 3.875, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.125, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.25, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 7061812.625, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 36440.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424886.125, "tippecanoe:mean:WOE_ID_EH": 23424886.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7125, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -13.466575, "tippecanoe:mean:LABEL_Y": 16.806002624999999, "tippecanoe:mean:NE_ID": 1159320958.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.053711, 47.857403 ], [ -136.691895, 45.336702 ], [ -138.449707, 41.459195 ], [ -143.854980, 41.211722 ], [ -147.458496, 44.087585 ], [ -145.502930, 47.234490 ], [ -141.723633, 47.413220 ], [ -140.053711, 47.857403 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81267ffffffffff", "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 12, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 31, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 34, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 11558, "tippecanoe:sum:POP_EST": 2276622, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 12113, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 60, "tippecanoe:sum:GDP_MD": 19043, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424989, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 140549245, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424989, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 140549245, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 64, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 72, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -290, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 24.3, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": 333.61664800000008, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -74.757852, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 6955925566, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5.166666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 379437, "tippecanoe:mean:POP_RANK": 9.5, "tippecanoe:mean:POP_YEAR": 2018.8333333333333, "tippecanoe:mean:GDP_MD": 3173.8333333333337, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424874.166666669, "tippecanoe:mean:WOE_ID_EH": 23424874.166666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -48.333333333333339, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.05, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 55.602774666666679, "tippecanoe:mean:LABEL_Y": -12.459642, "tippecanoe:mean:NE_ID": 1159320927.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.472168, 42.439674 ], [ -85.693359, 41.162114 ], [ -84.594727, 37.107765 ], [ -88.066406, 34.052659 ], [ -93.273926, 35.083956 ], [ -95.251465, 39.334297 ], [ -92.812500, 41.459195 ], [ -91.472168, 42.439674 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "811cbffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 35, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 81, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 9, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 63, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 60, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 68, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 68, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 26047555, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 118, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 28263, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 238179, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 28223, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 337140586, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 337140586, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 183, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 224, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 96, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -563, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -886, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 64.5, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 133.5, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -932.2607110000001, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 15.458829, "tippecanoe:sum:LABEL_Y": 307.87920399999998, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 16230490162, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:mean:LABELRANK": 5.785714285714286, "tippecanoe:mean:ADM0_DIF": 0.6428571428571429, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.07142857142857143, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4.285714285714286, "tippecanoe:mean:MAPCOLOR9": 4.857142857142857, "tippecanoe:mean:MAPCOLOR13": 4.857142857142857, "tippecanoe:mean:POP_EST": 1860539.642857143, "tippecanoe:mean:POP_RANK": 8.428571428571429, "tippecanoe:mean:POP_YEAR": 2018.7857142857143, "tippecanoe:mean:GDP_MD": 17012.785714285714, "tippecanoe:mean:GDP_YEAR": 2015.9285714285714, "tippecanoe:mean:WOE_ID": 24081470.42857143, "tippecanoe:mean:WOE_ID_EH": 24081470.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.071428571428572, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6.857142857142857, "tippecanoe:mean:TINY": -40.214285714285718, "tippecanoe:mean:HOMEPART": -63.285714285714288, "tippecanoe:mean:MIN_ZOOM": 0.35714285714285717, "tippecanoe:mean:MIN_LABEL": 4.607142857142857, "tippecanoe:mean:MAX_LABEL": 9.535714285714287, "tippecanoe:mean:LABEL_X": -66.5900507857143, "tippecanoe:mean:LABEL_Y": 21.991371714285714, "tippecanoe:mean:NE_ID": 1159320725.857143, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.786621, 50.527397 ], [ -148.403320, 50.429518 ], [ -146.755371, 48.092757 ], [ -145.502930, 47.234490 ], [ -147.458496, 44.087585 ], [ -153.039551, 43.436966 ], [ -156.027832, 46.905246 ], [ -153.786621, 50.527397 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81237ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 198717, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 4037, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 862, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 4022, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -342.30080599999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -32.685095000000007, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 2318642556, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 99358.5, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 431, "tippecanoe:mean:GDP_YEAR": 2011, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.5, "tippecanoe:mean:LONG_LEN": 4.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -171.15040299999999, "tippecanoe:mean:LABEL_Y": -16.342547500000003, "tippecanoe:mean:NE_ID": 1159321278, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.254395, 44.746733 ], [ -168.881836, 41.541478 ], [ -170.266113, 37.142803 ], [ -175.561523, 35.746512 ], [ -180.043945, 38.736946 ], [ -179.165039, 43.341160 ], [ -173.254395, 44.746733 ] ] ], [ [ [ 186.745605, 44.746733 ], [ 191.118164, 41.541478 ], [ 189.733887, 37.142803 ], [ 184.438477, 35.746512 ], [ 179.956055, 38.736946 ], [ 180.834961, 43.341160 ], [ 186.745605, 44.746733 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8136bffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 46849430, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849430, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 43, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -209.80598200000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -121.16396399999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 4048275965, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21296916.666666669, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 242587.66666666667, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 15616476.666666666, "tippecanoe:mean:WOE_ID_EH": 15616476.666666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14.333333333333334, "tippecanoe:mean:LONG_LEN": 14.333333333333334, "tippecanoe:mean:ABBREV_LEN": 8.333333333333334, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 3.8000000000000004, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -69.93532733333335, "tippecanoe:mean:LABEL_Y": -40.387988, "tippecanoe:mean:NE_ID": 1349425321.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.841797, 33.119150 ], [ -149.348145, 29.897806 ], [ -151.040039, 25.661333 ], [ -156.093750, 24.686952 ], [ -159.565430, 27.916767 ], [ -158.049316, 32.119801 ], [ -152.841797, 33.119150 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81227ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 328239523, "tippecanoe:sum:POP_EST": 328239523, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 21433226, "tippecanoe:sum:GDP_MD": 21433226, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424977, "tippecanoe:min:WOE_ID": 23424977, "tippecanoe:sum:WOE_ID": 23424977, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424977, "tippecanoe:min:WOE_ID_EH": 23424977, "tippecanoe:sum:WOE_ID_EH": 23424977, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 24, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -97.482602, "tippecanoe:min:LABEL_X": -97.482602, "tippecanoe:sum:LABEL_X": -97.482602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.538479, "tippecanoe:min:LABEL_Y": 39.538479, "tippecanoe:sum:LABEL_Y": 39.538479, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159321369, "tippecanoe:sum:NE_ID": 1159321369, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 328239523, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21433226, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424977, "tippecanoe:mean:WOE_ID_EH": 23424977, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 24, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -97.482602, "tippecanoe:mean:LABEL_Y": 39.538479, "tippecanoe:mean:NE_ID": 1159321369, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.055664, 52.119999 ], [ -171.870117, 49.052270 ], [ -173.254395, 44.746733 ], [ -179.165039, 43.341160 ], [ -184.372559, 46.179830 ], [ -183.691406, 50.639010 ], [ -177.055664, 52.119999 ] ] ], [ [ [ 182.944336, 52.119999 ], [ 188.129883, 49.052270 ], [ 186.745605, 44.746733 ], [ 180.834961, 43.341160 ], [ 175.627441, 46.179830 ], [ 176.308594, 50.639010 ], [ 182.944336, 52.119999 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81363ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.744629, 37.683820 ], [ -142.316895, 34.452218 ], [ -144.162598, 30.562261 ], [ -149.348145, 29.897806 ], [ -152.841797, 33.119150 ], [ -151.127930, 37.037640 ], [ -145.744629, 37.683820 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8171bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 183.647461, 11.049038 ], [ 186.613770, 7.972198 ], [ 185.690918, 3.820408 ], [ 181.977539, 2.899153 ], [ 179.208984, 5.900189 ], [ 179.780273, 9.622414 ], [ 181.757812, 10.466206 ], [ 183.647461, 11.049038 ] ] ], [ [ [ -176.352539, 11.049038 ], [ -173.386230, 7.972198 ], [ -174.309082, 3.820408 ], [ -178.022461, 2.899153 ], [ -180.791016, 5.900189 ], [ -180.219727, 9.622414 ], [ -178.242188, 10.466206 ], [ -176.352539, 11.049038 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8136fffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 3428, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4033, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 4028, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 46849769, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 46849769, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 56, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -89.801781, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -107.292315, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 2318641442, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1714, "tippecanoe:mean:POP_RANK": 2.5, "tippecanoe:mean:POP_YEAR": 2016.5, "tippecanoe:mean:GDP_MD": 141, "tippecanoe:mean:GDP_YEAR": 2014, "tippecanoe:mean:WOE_ID": 23424884.5, "tippecanoe:mean:WOE_ID_EH": 23424884.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 28, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -44.9008905, "tippecanoe:mean:LABEL_Y": -53.6461575, "tippecanoe:mean:NE_ID": 1159320721, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.162598, 30.562261 ], [ -140.910645, 27.059126 ], [ -142.712402, 22.877440 ], [ -147.700195, 22.167058 ], [ -151.040039, 25.661333 ], [ -149.348145, 29.897806 ], [ -144.162598, 30.562261 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8112fffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 41, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 325740912, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16142, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 568260, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549173, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044401, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 86, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 27.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 62.5, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 582.38741, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 326.084598, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568164, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.375, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.125, "tippecanoe:mean:POP_EST": 40717614, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 71032.5, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 17568646.625, "tippecanoe:mean:WOE_ID_EH": 23005550.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 10.75, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0.625, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 7.8125, "tippecanoe:mean:LABEL_X": 72.79842625, "tippecanoe:mean:LABEL_Y": 40.76057475, "tippecanoe:mean:NE_ID": 1159321020.5, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.235840, 55.478853 ], [ -109.995117, 51.754240 ], [ -112.785645, 48.004625 ], [ -119.223633, 47.798397 ], [ -120.915527, 49.396675 ], [ -123.112793, 50.986099 ], [ -121.442871, 54.914514 ], [ -114.235840, 55.478853 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8127bffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 22, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 29, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 30, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 39, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 1736062529, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 123, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16153, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 22884216, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424781, "tippecanoe:sum:WOE_ID": 188839895, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424781, "tippecanoe:sum:WOE_ID_EH": 188839895, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 58, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 71, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 60.7, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 942.240656, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 232.15936599999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320471, "tippecanoe:sum:NE_ID": 9274567810, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.375, "tippecanoe:mean:MAPCOLOR8": 3.625, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 4.875, "tippecanoe:mean:POP_EST": 217007816.125, "tippecanoe:mean:POP_RANK": 15.375, "tippecanoe:mean:POP_YEAR": 2019.125, "tippecanoe:mean:GDP_MD": 2860527, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23604986.875, "tippecanoe:mean:WOE_ID_EH": 23604986.875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.25, "tippecanoe:mean:LONG_LEN": 8.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.5875, "tippecanoe:mean:LABEL_X": 117.780082, "tippecanoe:mean:LABEL_Y": 29.019920749999998, "tippecanoe:mean:NE_ID": 1159320976.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.995117, 51.754240 ], [ -102.897949, 51.563412 ], [ -99.909668, 47.472663 ], [ -102.326660, 45.197522 ], [ -103.535156, 44.087585 ], [ -109.797363, 44.418088 ], [ -112.785645, 48.004625 ], [ -109.995117, 51.754240 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8112bffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 61, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 42, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 51, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 46, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 195489159, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6322700, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317101037, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317101037, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 96, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 104, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 47.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 116.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 300.14189400000006, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 761.8934709999999, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320427, "tippecanoe:sum:NE_ID": 16230492268, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.357142857142857, "tippecanoe:mean:ADM0_DIF": 0.21428571428571428, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.642857142857143, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 13963511.357142857, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 451621.4285714286, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650074.07142857, "tippecanoe:mean:WOE_ID_EH": 22650074.07142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.857142857142857, "tippecanoe:mean:LONG_LEN": 7.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3714285714285716, "tippecanoe:mean:MAX_LABEL": 8.335714285714286, "tippecanoe:mean:LABEL_X": 21.43870671428572, "tippecanoe:mean:LABEL_Y": 54.4209622142857, "tippecanoe:mean:NE_ID": 1159320876.2857145, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.848145, 58.043004 ], [ -121.442871, 54.914514 ], [ -123.112793, 50.986099 ], [ -128.913574, 50.148746 ], [ -133.857422, 52.842595 ], [ -133.527832, 56.764768 ], [ -126.848145, 58.043004 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8128fffffffffff", "tippecanoe:count:scalerank": 30, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 30, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 30, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 30, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 60, "tippecanoe:count:GEOU_DIF": 30, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 30, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 30, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 3, "tippecanoe:count:MAPCOLOR7": 30, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 95, "tippecanoe:count:MAPCOLOR8": 30, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 86, "tippecanoe:count:MAPCOLOR9": 30, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 106, "tippecanoe:count:MAPCOLOR13": 30, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 84, "tippecanoe:count:POP_EST": 30, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 653845935, "tippecanoe:count:POP_RANK": 30, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 377, "tippecanoe:count:POP_YEAR": 30, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 60563, "tippecanoe:count:GDP_MD": 30, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 4652105, "tippecanoe:count:GDP_YEAR": 30, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 60537, "tippecanoe:count:WOE_ID": 30, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 567060578, "tippecanoe:count:WOE_ID_EH": 30, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 637335789, "tippecanoe:count:ADM0_A3_UN": 30, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2970, "tippecanoe:count:ADM0_A3_WB": 30, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2970, "tippecanoe:count:NAME_LEN": 30, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 245, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 251, "tippecanoe:count:ABBREV_LEN": 30, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 140, "tippecanoe:count:TINY": 30, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2664, "tippecanoe:count:HOMEPART": 30, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -270, "tippecanoe:count:MIN_ZOOM": 30, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 21, "tippecanoe:count:MIN_LABEL": 30, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 117, "tippecanoe:count:MAX_LABEL": 30, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 259.9, "tippecanoe:count:LABEL_X": 30, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 21.555839, "tippecanoe:sum:LABEL_X": 1192.538962, "tippecanoe:count:LABEL_Y": 30, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 939.4510879999998, "tippecanoe:count:NE_ID": 30, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 35349939856, "tippecanoe:mean:scalerank": 0.36666666666666666, "tippecanoe:mean:LABELRANK": 4.233333333333333, "tippecanoe:mean:ADM0_DIF": 0.1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.8666666666666669, "tippecanoe:mean:MAPCOLOR9": 3.533333333333333, "tippecanoe:mean:MAPCOLOR13": 2.8, "tippecanoe:mean:POP_EST": 21794864.5, "tippecanoe:mean:POP_RANK": 12.566666666666667, "tippecanoe:mean:POP_YEAR": 2018.7666666666667, "tippecanoe:mean:GDP_MD": 155070.16666666667, "tippecanoe:mean:GDP_YEAR": 2017.9, "tippecanoe:mean:WOE_ID": 18902019.266666667, "tippecanoe:mean:WOE_ID_EH": 21244526.3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.166666666666666, "tippecanoe:mean:LONG_LEN": 8.366666666666668, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -88.8, "tippecanoe:mean:HOMEPART": -9, "tippecanoe:mean:MIN_ZOOM": 0.7, "tippecanoe:mean:MIN_LABEL": 3.9, "tippecanoe:mean:MAX_LABEL": 8.663333333333333, "tippecanoe:mean:LABEL_X": 39.751298733333339, "tippecanoe:mean:LABEL_Y": 31.31503626666666, "tippecanoe:mean:NE_ID": 1178331328.5333334, "tippecanoe:count": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.112793, 50.986099 ], [ -120.915527, 49.396675 ], [ -119.223633, 47.798397 ], [ -122.124023, 44.056012 ], [ -127.968750, 43.421009 ], [ -131.286621, 46.422713 ], [ -128.913574, 50.148746 ], [ -123.112793, 50.986099 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81487ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.269043, 32.861132 ], [ -110.654297, 28.729130 ], [ -113.466797, 24.666986 ], [ -118.630371, 24.666986 ], [ -121.333008, 28.652031 ], [ -118.806152, 32.787275 ], [ -113.269043, 32.861132 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8129bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.049316, 40.713956 ], [ -110.258789, 36.791691 ], [ -113.269043, 32.861132 ], [ -118.806152, 32.787275 ], [ -121.706543, 36.580247 ], [ -119.003906, 40.563895 ], [ -113.049316, 40.713956 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81293ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 59706400, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 4471, "tippecanoe:sum:GDP_MD": 355902, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849935, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849935, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 55.132998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -56.242452, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321289, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 29853200, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 177951, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424967.5, "tippecanoe:mean:WOE_ID_EH": 23424967.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 15.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 27.566499, "tippecanoe:mean:LABEL_Y": -28.121226, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.706543, 36.580247 ], [ -118.806152, 32.787275 ], [ -121.333008, 28.652031 ], [ -126.430664, 28.323725 ], [ -129.287109, 31.952162 ], [ -127.133789, 36.084621 ], [ -121.706543, 36.580247 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8126fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 40.094882 ], [ -95.251465, 39.334297 ], [ -93.273926, 35.083956 ], [ -96.657715, 31.615966 ], [ -102.084961, 32.268555 ], [ -104.458008, 36.491973 ], [ -101.030273, 40.094882 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8148bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.084961, 32.268555 ], [ -96.657715, 31.615966 ], [ -94.746094, 27.254630 ], [ -97.910156, 23.584126 ], [ -103.007812, 24.126702 ], [ -105.249023, 28.439714 ], [ -102.084961, 32.268555 ] ] ] } } ] } ] } diff --git a/tests/pbf/bin-11-327-791.pbf.out.json b/tests/pbf/bin-11-327-791.pbf.out.json index 660ac77b..3c9804c5 100644 --- a/tests/pbf/bin-11-327-791.pbf.out.json +++ b/tests/pbf/bin-11-327-791.pbf.out.json @@ -1,18 +1,12 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655", "tippecanoe:count": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269", "tippecanoe:count": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070", "tippecanoe:count": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520", "tippecanoe:count": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831", "tippecanoe:count": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462540, 37.711257 ], [ -122.460823, 37.710578 ], [ -122.464256, 37.710578 ], [ -122.465973, 37.710171 ], [ -122.467690, 37.709220 ], [ -122.468891, 37.708270 ], [ -122.497730, 37.708134 ], [ -122.498245, 37.708134 ], [ -122.498245, 37.710714 ], [ -122.498417, 37.714924 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087", "tippecanoe:count": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361", "tippecanoe:count": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427349, 37.715060 ], [ -122.425632, 37.714517 ], [ -122.426662, 37.711257 ], [ -122.427177, 37.711257 ], [ -122.426147, 37.710986 ], [ -122.426662, 37.710171 ], [ -122.429924, 37.711529 ], [ -122.430096, 37.710850 ], [ -122.429237, 37.709628 ], [ -122.428379, 37.709220 ], [ -122.428379, 37.708405 ], [ -122.434044, 37.708134 ], [ -122.440395, 37.708405 ], [ -122.452240, 37.708134 ], [ -122.468891, 37.708270 ], [ -122.467690, 37.709220 ], [ -122.465973, 37.710171 ], [ -122.464256, 37.710578 ], [ -122.460823, 37.710578 ], [ -122.462540, 37.711257 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372", "tippecanoe:count": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554", "tippecanoe:count": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.397995, 37.715467 ], [ -122.398510, 37.715467 ], [ -122.396450, 37.712887 ], [ -122.395763, 37.710850 ], [ -122.394047, 37.711257 ], [ -122.390785, 37.711122 ], [ -122.390957, 37.710307 ], [ -122.393703, 37.708270 ], [ -122.423744, 37.708270 ], [ -122.428379, 37.708405 ], [ -122.428379, 37.709220 ], [ -122.429237, 37.709628 ], [ -122.430096, 37.710850 ], [ -122.429924, 37.711529 ], [ -122.426662, 37.710171 ], [ -122.426147, 37.710986 ], [ -122.427177, 37.711257 ], [ -122.426662, 37.711257 ], [ -122.425632, 37.714517 ], [ -122.427349, 37.715060 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634", "tippecanoe:count": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787", "tippecanoe:count": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.360401, 37.708270 ], [ -122.381001, 37.708405 ], [ -122.393703, 37.708270 ], [ -122.390957, 37.710307 ], [ -122.390785, 37.711122 ], [ -122.394047, 37.711257 ], [ -122.395763, 37.710850 ], [ -122.396450, 37.712887 ], [ -122.398510, 37.715467 ], [ -122.397995, 37.715467 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } , { "type": "Feature", "properties": { "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664", "tippecanoe:count": 70 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } , @@ -36,22 +30,28 @@ , { "type": "Feature", "properties": { "ZCTA5CE10": "94114", "GEOID10": "94114", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3692567, "AWATER10": 0, "INTPTLAT10": "+37.7580586", "INTPTLON10": "-122.4354080", "tippecanoe:count": 206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.428379, 37.770443 ], [ -122.428207, 37.769493 ], [ -122.426319, 37.769629 ], [ -122.427006, 37.769222 ], [ -122.426662, 37.768951 ], [ -122.426491, 37.765830 ], [ -122.427692, 37.765694 ], [ -122.427521, 37.764608 ], [ -122.426319, 37.764608 ], [ -122.426319, 37.763930 ], [ -122.427177, 37.763794 ], [ -122.427177, 37.762980 ], [ -122.426319, 37.762980 ], [ -122.426147, 37.762166 ], [ -122.424774, 37.748593 ], [ -122.438164, 37.747779 ], [ -122.438164, 37.748729 ], [ -122.441425, 37.748593 ], [ -122.442455, 37.748186 ], [ -122.444000, 37.746829 ], [ -122.444515, 37.746693 ], [ -122.444859, 37.746965 ], [ -122.444172, 37.747508 ], [ -122.444344, 37.748322 ], [ -122.443485, 37.749408 ], [ -122.442799, 37.752394 ], [ -122.442455, 37.752394 ], [ -122.440395, 37.755108 ], [ -122.440052, 37.755787 ], [ -122.440052, 37.756330 ], [ -122.441082, 37.756194 ], [ -122.441082, 37.756058 ], [ -122.441254, 37.756194 ], [ -122.442970, 37.755516 ], [ -122.442284, 37.755108 ], [ -122.442455, 37.754430 ], [ -122.442970, 37.754023 ], [ -122.444000, 37.754158 ], [ -122.444172, 37.755923 ], [ -122.444687, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.446918, 37.756601 ], [ -122.447948, 37.757551 ], [ -122.450352, 37.757416 ], [ -122.451038, 37.756737 ], [ -122.452068, 37.756601 ], [ -122.452412, 37.757008 ], [ -122.453270, 37.756737 ], [ -122.453785, 37.757416 ], [ -122.452927, 37.758094 ], [ -122.453957, 37.758773 ], [ -122.453270, 37.759180 ], [ -122.451553, 37.759451 ], [ -122.448635, 37.759587 ], [ -122.448463, 37.759044 ], [ -122.447605, 37.759180 ], [ -122.447090, 37.759723 ], [ -122.446404, 37.760944 ], [ -122.446747, 37.761758 ], [ -122.445374, 37.761894 ], [ -122.443829, 37.763251 ], [ -122.442970, 37.763523 ], [ -122.443314, 37.765287 ], [ -122.441254, 37.765287 ], [ -122.439537, 37.766644 ], [ -122.438507, 37.766237 ], [ -122.438164, 37.767187 ], [ -122.435589, 37.767322 ], [ -122.435760, 37.769086 ], [ -122.429066, 37.769493 ], [ -122.429237, 37.770308 ], [ -122.428379, 37.770443 ] ] ], [ [ [ -122.441597, 37.755108 ], [ -122.442799, 37.752530 ], [ -122.442455, 37.753751 ], [ -122.441597, 37.755108 ] ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015", "tippecanoe:count": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } -, { "type": "Feature", "properties": { "ZCTA5CE10": "94102", "GEOID10": "94102", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1732577, "AWATER10": 0, "INTPTLAT10": "+37.7795835", "INTPTLON10": "-122.4193398", "tippecanoe:count": 134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.408638, 37.789167 ], [ -122.408466, 37.788353 ], [ -122.406750, 37.788488 ], [ -122.406406, 37.786589 ], [ -122.404690, 37.786725 ], [ -122.408638, 37.783604 ], [ -122.408638, 37.783469 ], [ -122.409153, 37.783197 ], [ -122.426319, 37.769629 ], [ -122.428207, 37.769493 ], [ -122.429924, 37.777906 ], [ -122.428036, 37.778177 ], [ -122.428207, 37.779127 ], [ -122.426834, 37.779263 ], [ -122.427349, 37.782112 ], [ -122.424088, 37.782519 ], [ -122.423916, 37.781569 ], [ -122.422371, 37.781705 ], [ -122.422543, 37.782655 ], [ -122.420826, 37.782926 ], [ -122.420654, 37.781976 ], [ -122.418938, 37.782112 ], [ -122.419109, 37.783062 ], [ -122.414303, 37.783740 ], [ -122.414818, 37.786453 ], [ -122.413101, 37.786725 ], [ -122.413273, 37.787674 ], [ -122.412415, 37.787810 ], [ -122.412415, 37.788081 ], [ -122.411728, 37.788217 ], [ -122.411900, 37.788760 ], [ -122.408638, 37.789167 ] ] ] } } , { "type": "Feature", "properties": { "ZCTA5CE10": "94105", "GEOID10": "94105", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 942025, "AWATER10": 223684, "INTPTLAT10": "+37.7896493", "INTPTLON10": "-122.3930670", "tippecanoe:count": 127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.388897, 37.796628 ], [ -122.385120, 37.791337 ], [ -122.385635, 37.790930 ], [ -122.385464, 37.790523 ], [ -122.386322, 37.790252 ], [ -122.387867, 37.788760 ], [ -122.387695, 37.787132 ], [ -122.388554, 37.786996 ], [ -122.392159, 37.784147 ], [ -122.392330, 37.784283 ], [ -122.391472, 37.785097 ], [ -122.391472, 37.785639 ], [ -122.390099, 37.786725 ], [ -122.391815, 37.785504 ], [ -122.393360, 37.784961 ], [ -122.394218, 37.785097 ], [ -122.394047, 37.785232 ], [ -122.395592, 37.786318 ], [ -122.397823, 37.784690 ], [ -122.399368, 37.785911 ], [ -122.400398, 37.785097 ], [ -122.402630, 37.786725 ], [ -122.401772, 37.787267 ], [ -122.402802, 37.788081 ], [ -122.403488, 37.787810 ], [ -122.396278, 37.793372 ], [ -122.396622, 37.794593 ], [ -122.394390, 37.795000 ], [ -122.392502, 37.793643 ], [ -122.392159, 37.793915 ], [ -122.391472, 37.793915 ], [ -122.388897, 37.796628 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114", "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ] ], [ [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ] ], [ [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ] ], [ [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ] ], [ [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ] ], [ [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237", "tippecanoe:count": 252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ] ] ], [ [ [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ] ] ], [ [ [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ] ] ], [ [ [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ] ] ], [ [ [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ] ] ], [ [ [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ] ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237", "tippecanoe:count": 236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ] ] ], [ [ [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ] ] ], [ [ [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ] ] ], [ [ [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ] ] ], [ [ [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ] ] ], [ [ [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ] ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655", "tippecanoe:count": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831", "tippecanoe:count": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462540, 37.711257 ], [ -122.460823, 37.710578 ], [ -122.464256, 37.710578 ], [ -122.465973, 37.710171 ], [ -122.467690, 37.709220 ], [ -122.468891, 37.708270 ], [ -122.497730, 37.708134 ], [ -122.498245, 37.708134 ], [ -122.498245, 37.710714 ], [ -122.498417, 37.714924 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269", "tippecanoe:count": 228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361", "tippecanoe:count": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427349, 37.715060 ], [ -122.425632, 37.714517 ], [ -122.426662, 37.711257 ], [ -122.427177, 37.711257 ], [ -122.426147, 37.710986 ], [ -122.426662, 37.710171 ], [ -122.429924, 37.711529 ], [ -122.430096, 37.710850 ], [ -122.429237, 37.709628 ], [ -122.428379, 37.709220 ], [ -122.428379, 37.708405 ], [ -122.434044, 37.708134 ], [ -122.440395, 37.708405 ], [ -122.452240, 37.708134 ], [ -122.468891, 37.708270 ], [ -122.467690, 37.709220 ], [ -122.465973, 37.710171 ], [ -122.464256, 37.710578 ], [ -122.460823, 37.710578 ], [ -122.462540, 37.711257 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070", "tippecanoe:count": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554", "tippecanoe:count": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.397995, 37.715467 ], [ -122.398510, 37.715467 ], [ -122.396450, 37.712887 ], [ -122.395763, 37.710850 ], [ -122.394047, 37.711257 ], [ -122.390785, 37.711122 ], [ -122.390957, 37.710307 ], [ -122.393703, 37.708270 ], [ -122.423744, 37.708270 ], [ -122.428379, 37.708405 ], [ -122.428379, 37.709220 ], [ -122.429237, 37.709628 ], [ -122.430096, 37.710850 ], [ -122.429924, 37.711529 ], [ -122.426662, 37.710171 ], [ -122.426147, 37.710986 ], [ -122.427177, 37.711257 ], [ -122.426662, 37.711257 ], [ -122.425632, 37.714517 ], [ -122.427349, 37.715060 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372", "tippecanoe:count": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787", "tippecanoe:count": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.360401, 37.708270 ], [ -122.381001, 37.708405 ], [ -122.393703, 37.708270 ], [ -122.390957, 37.710307 ], [ -122.390785, 37.711122 ], [ -122.394047, 37.711257 ], [ -122.395763, 37.710850 ], [ -122.396450, 37.712887 ], [ -122.398510, 37.715467 ], [ -122.397995, 37.715467 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520", "tippecanoe:count": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087", "tippecanoe:count": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634", "tippecanoe:count": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015", "tippecanoe:count": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114", "tippecanoe:count": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ] ], [ [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ] ], [ [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ] ], [ [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ] ], [ [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ] ], [ [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ] ] ] } } ] } ] } diff --git a/version.hpp b/version.hpp index 90c6eb88..f6839224 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.62.4" +#define VERSION "v2.62.5" #endif