From 21bf44720d32557a6c291511156c1d4f626d3333 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Tue, 17 Sep 2024 22:15:17 -0700 Subject: [PATCH] Fix count/mean accumulation --- clip.cpp | 25 ++++++++-- tests/pbf/0-0-0-pop-0-0-0.pbf.out.json | 44 +++++++++--------- tests/pbf/0-0-0-pop-1-1-0.pbf.out.json | 64 +++++++++++++------------- tests/pbf/0-0-0-pop-2-0-1.pbf.out.json | 18 ++++---- 4 files changed, 85 insertions(+), 66 deletions(-) diff --git a/clip.cpp b/clip.cpp index ac35837c..1b2b1452 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1139,9 +1139,14 @@ static void add_mean(mvt_feature &feature, mvt_layer &layer) { if (f != attributes.end()) { mvt_value const &sum = layer.values[feature.tags[i + 1]]; mvt_value const &count = layer.values[feature.tags[f->second + 1]]; + double count_val = mvt_value_to_double(count); + if (count_val <= 0) { + fprintf(stderr, "can't happen: count is %s (type %d)\n", count.toString().c_str(), count.type); + exit(EXIT_IMPOSSIBLE); + } mvt_value mean; mean.type = mvt_double; - mean.numeric_value.double_value = mvt_value_to_double(sum) / mvt_value_to_double(count); + mean.numeric_value.double_value = mvt_value_to_double(sum) / count_val; layer.tag(feature, "tippecanoe:mean:" + trunc, mean); } } @@ -1262,12 +1267,26 @@ static void feature_out(std::vector const &features, mvt_layer &ou // not present at all, so copy our value to the prefixed output numeric_out_field.emplace(prefixed, full_keys.size()); full_keys.push_back(prefixed); - full_values.push_back(mvt_value_to_serial_val(val)); + if (op.second == op_count) { + serial_val sv; + sv.type = mvt_double; + sv.s = "1"; + full_values.push_back(sv); + } else { + full_values.push_back(mvt_value_to_serial_val(val)); + } } else { // exists unprefixed, so copy it, and then accumulate on our value numeric_out_field.emplace(prefixed, full_keys.size()); full_keys.push_back(prefixed); - full_values.push_back(full_values[out_attr->second]); + if (op.second == op_count) { + serial_val sv; + sv.type = mvt_double; + sv.s = "1"; + full_values.push_back(sv); + } else { + full_values.push_back(full_values[out_attr->second]); + } preserve_attribute(op.second, prefixed, mvt_value_to_serial_val(val), full_keys, full_values, attribute_accum_state); } 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 bdf87653..6eb02825 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 @@ -4,25 +4,25 @@ , { "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": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 63918, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 7484, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424756, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 23424756, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -64.763573, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 32.296592, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1159320705, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 37589262, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1736425, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424775, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 23424775, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": -101.9107, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 60.324287, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1159320467, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "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": 0, "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": 7, "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": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 10269417, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 238785, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424925, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID_EH": 23424925, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": -8.271754, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_Y": 39.606675, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:NE_ID": 1159321187, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "8057fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 549935, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1981, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424794, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 23424794, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 22, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -23.639434, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 15.074761, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1159320523, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "801bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 5997, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 215, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424939, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 23424939, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 23, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": -56.332352, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 47.040344, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1159320647, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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", "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": "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": "80cffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "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": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 0, "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": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": -99, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 29, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": -99, "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": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 7.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -73.31378, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": -49.511034, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1729635141, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": nan, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": nan, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -40,7 +40,7 @@ , { "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": "8025fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 3225167, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 13996, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424887, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 23424887, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 104.150405, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 45.997488, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1159321071, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -54,19 +54,19 @@ , { "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": "80d7fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 58558270, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 58558270, "tippecanoe:sum:POP_EST": 58558270, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 351431, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 351431, "tippecanoe:sum:GDP_MD": 351431, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424942, "tippecanoe:max:WOE_ID": 23424942, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 23424942, "tippecanoe:count:WOE_ID_EH": 23424942, "tippecanoe:max:WOE_ID_EH": 23424942, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 23424942, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 23.665734, "tippecanoe:max:LABEL_X": 23.665734, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 23.665734, "tippecanoe:count:LABEL_Y": -29.708776, "tippecanoe:max:LABEL_Y": -29.708776, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -29.708776, "tippecanoe:count:NE_ID": 1159321431, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 1159321431, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "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": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 3, "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": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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", "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": "8001fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 144373535, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 144373535, "tippecanoe:sum:POP_EST": 144373535, "tippecanoe:count:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1699876, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 1699876, "tippecanoe:sum:GDP_MD": 1699876, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424936, "tippecanoe:max:WOE_ID": 23424936, "tippecanoe:min:WOE_ID": 23424936, "tippecanoe:sum:WOE_ID": 23424936, "tippecanoe:count:WOE_ID_EH": 23424936, "tippecanoe:max:WOE_ID_EH": 23424936, "tippecanoe:min:WOE_ID_EH": 23424936, "tippecanoe:sum:WOE_ID_EH": 23424936, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 18, "tippecanoe:min:LONG_LEN": 18, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.2, "tippecanoe:max:MAX_LABEL": 5.2, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 5.2, "tippecanoe:count:LABEL_X": 44.686469, "tippecanoe:max:LABEL_X": 44.686469, "tippecanoe:min:LABEL_X": 44.686469, "tippecanoe:sum:LABEL_X": 44.686469, "tippecanoe:count:LABEL_Y": 58.249357, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": 58.249357, "tippecanoe:sum:LABEL_Y": 58.249357, "tippecanoe:count:NE_ID": 1159321201, "tippecanoe:max:NE_ID": 1159321201, "tippecanoe:min:NE_ID": 1159321201, "tippecanoe:sum:NE_ID": 1159321201, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "80adfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 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": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2494530, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 12366, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424987, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 23424987, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 17.108166, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": -20.575298, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1159321085, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -78,29 +78,29 @@ , { "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": "80ddfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 30, "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": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424955, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 23424955, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 19, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -31.063179, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": -55.683402, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1159320731, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": nan, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "808ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 17373662, "tippecanoe:max:POP_EST": 17373662, "tippecanoe:min:POP_EST": 17373662, "tippecanoe:sum:POP_EST": 17373662, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 107435, "tippecanoe:max:GDP_MD": 107435, "tippecanoe:min:GDP_MD": 107435, "tippecanoe:sum:GDP_MD": 107435, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424801, "tippecanoe:max:WOE_ID": 23424801, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 23424801, "tippecanoe:count:WOE_ID_EH": 23424801, "tippecanoe:max:WOE_ID_EH": 23424801, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 23424801, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": -78.188375, "tippecanoe:max:LABEL_X": -78.188375, "tippecanoe:min:LABEL_X": -78.188375, "tippecanoe:sum:LABEL_X": -78.188375, "tippecanoe:count:LABEL_Y": -1.259076, "tippecanoe:max:LABEL_Y": -1.259076, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": -1.259076, "tippecanoe:count:NE_ID": 1159320567, "tippecanoe:max:NE_ID": 1159320567, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 1159320567, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8073fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 5, "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": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 18008, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 268, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424927, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 23424927, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 2, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 134.580157, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 7.518252, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1159321171, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8075fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 25716544, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 25716544, "tippecanoe:sum:POP_EST": 25716544, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 58539, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 58539, "tippecanoe:sum:GDP_MD": 58539, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424854, "tippecanoe:max:WOE_ID": 23424854, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 23424854, "tippecanoe:count:WOE_ID_EH": 23424854, "tippecanoe:max:WOE_ID_EH": 23424854, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 23424854, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": -5.568618, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_X": -5.568618, "tippecanoe:count:LABEL_Y": 7.49139, "tippecanoe:max:LABEL_Y": 7.49139, "tippecanoe:min:LABEL_Y": 7.49139, "tippecanoe:sum:LABEL_Y": 7.49139, "tippecanoe:count:NE_ID": 1159320507, "tippecanoe:max:NE_ID": 1159320507, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 1159320507, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "80f3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 5, "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": -99, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 4490, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 898, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 28289409, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 28289409, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 35.885455, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": -79.843222, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1159320335, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8085fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "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": 97625, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1703, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424941, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 23424941, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 2, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 55.480175, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": -4.676659, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1159321291, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "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": "8099fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8077fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 13, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 113815, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 401, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 23424815, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 23424815, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 158.234019, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 6.887553, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1159320691, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -110,13 +110,13 @@ , { "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": "808bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 11513100, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 40895, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424762, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 23424762, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": -64.593433, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": -16.666015, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1159320439, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "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": "8081fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 211049527, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1839758, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424768, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 23424768, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": -49.55945, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": -12.098687, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1159320441, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , 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 aeafa6f7..635d5f57 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 @@ -6,7 +6,7 @@ , { "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": "820187fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 63918, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 7484, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424756, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 23424756, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -64.763573, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 32.296592, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1159320705, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -14,25 +14,25 @@ , { "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": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 549935, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1981, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424794, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 23424794, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 22, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -23.639434, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 15.074761, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1159320523, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "8200a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 5997, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 215, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424939, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 23424939, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 23, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": -56.332352, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 47.040344, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1159320647, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "820837fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 197097, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 197097, "tippecanoe:sum:POP_EST": 197097, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 852, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 852, "tippecanoe:sum:GDP_MD": 852, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424992, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID": 23424992, "tippecanoe:count:WOE_ID_EH": 23424992, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424992, "tippecanoe:sum:WOE_ID_EH": 23424992, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": -172.438241, "tippecanoe:max:LABEL_X": -172.438241, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -172.438241, "tippecanoe:count:LABEL_Y": -13.639139, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -13.639139, "tippecanoe:sum:LABEL_Y": -13.639139, "tippecanoe:count:NE_ID": 1159321423, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321423, "tippecanoe:sum:NE_ID": 1159321423, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8209affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1620, "tippecanoe:max:POP_EST": 1620, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1620, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 3, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 3, "tippecanoe:count:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 2018, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 10, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 10, "tippecanoe:count:GDP_YEAR": 2003, "tippecanoe:max:GDP_YEAR": 2003, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 2003, "tippecanoe:count:WOE_ID": 23424904, "tippecanoe:max:WOE_ID": 23424904, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 23424904, "tippecanoe:count:WOE_ID_EH": 23424904, "tippecanoe:max:WOE_ID_EH": 23424904, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 23424904, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 4, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 4, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -169.862565, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_X": -169.862565, "tippecanoe:count:LABEL_Y": -19.045956, "tippecanoe:max:LABEL_Y": -19.045956, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -19.045956, "tippecanoe:count:NE_ID": 1159321133, "tippecanoe:max:NE_ID": 1159321133, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 1159321133, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "82088ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "82109ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "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": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 0, "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": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": -99, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 29, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": -99, "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": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 7.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -73.31378, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": -49.511034, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1729635141, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": nan, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": nan, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": 5, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "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": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 3398, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 3398, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 282, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 2012, "tippecanoe:max:GDP_YEAR": 2012, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 2012, "tippecanoe:count:WOE_ID": 23424814, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 23424814, "tippecanoe:count:WOE_ID_EH": 23424814, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 23424814, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 27, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 27, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4.5, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": -58.738602, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -58.738602, "tippecanoe:count:LABEL_Y": -51.608913, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -51.608913, "tippecanoe:count:NE_ID": 1159320711, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 1159320711, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -46,7 +46,7 @@ , { "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": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 21803000, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 84008, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424778, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID_EH": 23424778, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 80.704823, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_Y": 7.581097, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:NE_ID": 1159321025, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -62,57 +62,57 @@ , { "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": "820417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 7169455, "tippecanoe:max:POP_EST": 7169455, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 7169455, "tippecanoe:count:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 18173, "tippecanoe:max:GDP_MD": 18173, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 18173, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424872, "tippecanoe:max:WOE_ID": 23424872, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 23424872, "tippecanoe:count:WOE_ID_EH": 23424872, "tippecanoe:max:WOE_ID_EH": 23424872, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 23424872, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 102.533912, "tippecanoe:max:LABEL_X": 102.533912, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 102.533912, "tippecanoe:count:LABEL_Y": 19.431821, "tippecanoe:max:LABEL_Y": 19.431821, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 19.431821, "tippecanoe:count:NE_ID": 1159321011, "tippecanoe:max:NE_ID": 1159321011, "tippecanoe:min:NE_ID": 1159321011, "tippecanoe:sum:NE_ID": 1159321011, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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 ] ] ] } } +{ "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 ] ] ] } } , { "type": "Feature", "properties": { "bin": "8204a7fffffffff", "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": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 8, "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": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 54045420, "tippecanoe:sum:POP_EST": 1490088756, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 50, "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": 2868929, "tippecanoe:min:GDP_MD": 76085, "tippecanoe:sum:GDP_MD": 3488562, "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": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 70274571, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 70274571, "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": 5, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "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": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 7.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 101.073198, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 276.2358, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 15.45974, "tippecanoe:sum:LABEL_Y": 59.72044699999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 3477963219, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.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, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 496696252, "tippecanoe:mean:POP_RANK": 16.666666666666669, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1162854, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424857, "tippecanoe:mean:WOE_ID_EH": 23424857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 6.666666666666667, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.466666666666667, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": 92.0786, "tippecanoe:mean:LABEL_Y": 19.906815666666664, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, 71.074056 ], [ 140.712891, 70.363091 ], [ 141.064453, 68.576441 ], [ 137.197266, 67.542167 ], [ 132.758789, 68.155209 ], [ 131.660156, 69.900118 ], [ 135.703125, 71.074056 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820427fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 3225167, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 13996, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424887, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 23424887, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 104.150405, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 45.997488, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1159321071, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 25666161, "tippecanoe:max:POP_EST": 25666161, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 25666161, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 40000, "tippecanoe:max:GDP_MD": 40000, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 40000, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424865, "tippecanoe:max:WOE_ID": 23424865, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 23424865, "tippecanoe:count:WOE_ID_EH": 23424865, "tippecanoe:max:WOE_ID_EH": 23424865, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 23424865, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 126.444516, "tippecanoe:max:LABEL_X": 126.444516, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 126.444516, "tippecanoe:count:LABEL_Y": 39.885252, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 39.885252, "tippecanoe:sum:LABEL_Y": 39.885252, "tippecanoe:count:NE_ID": 1159321181, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159321181, "tippecanoe:sum:NE_ID": 1159321181, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": 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": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 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": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2494530, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 12366, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424987, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 23424987, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 17.108166, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": -20.575298, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1159321085, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "820ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "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": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 30366036, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 30366036, "tippecanoe:sum:POP_EST": 30366036, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 15291, "tippecanoe:max:GDP_MD": 15291, "tippecanoe:min:GDP_MD": 15291, "tippecanoe:sum:GDP_MD": 15291, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424902, "tippecanoe:max:WOE_ID": 23424902, "tippecanoe:min:WOE_ID": 23424902, "tippecanoe:sum:WOE_ID": 23424902, "tippecanoe:count:WOE_ID_EH": 23424902, "tippecanoe:max:WOE_ID_EH": 23424902, "tippecanoe:min:WOE_ID_EH": 23424902, "tippecanoe:sum:WOE_ID_EH": 23424902, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 37.83789, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_X": 37.83789, "tippecanoe:count:LABEL_Y": -13.94323, "tippecanoe:max:LABEL_Y": -13.94323, "tippecanoe:min:LABEL_Y": -13.94323, "tippecanoe:sum:LABEL_Y": -13.94323, "tippecanoe:count:NE_ID": 1159321073, "tippecanoe:max:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159321073, "tippecanoe:sum:NE_ID": 1159321073, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "821567fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "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": 97625, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1703, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424941, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 23424941, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 2, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 55.480175, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": -4.676659, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1159321291, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821577fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1265711, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 14048, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424894, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 23424894, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 2, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 57.565848, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": -20.299506, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1159321079, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8214a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 5, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 0, "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": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 28289411, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID": 28289411, "tippecanoe:count:WOE_ID_EH": 28289411, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289411, "tippecanoe:sum:WOE_ID_EH": 28289411, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 25, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 25, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4.5, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 9.5, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 73.50521, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_X": 73.50521, "tippecanoe:count:LABEL_Y": -53.103462, "tippecanoe:max:LABEL_Y": -53.103462, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -53.103462, "tippecanoe:count:NE_ID": 1159320361, "tippecanoe:max:NE_ID": 1159320361, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 1159320361, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": nan, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": nan, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 140, "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": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 16, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 28289406, "tippecanoe:max:WOE_ID": 28289406, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 28289406, "tippecanoe:count:WOE_ID_EH": 28289406, "tippecanoe:max:WOE_ID_EH": 28289406, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 28289406, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 22, "tippecanoe:max:NAME_LEN": 22, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 35, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 35, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 69.122136, "tippecanoe:max:LABEL_X": 69.122136, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 69.122136, "tippecanoe:count:LABEL_Y": -49.303721, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -49.303721, "tippecanoe:sum:LABEL_Y": -49.303721, "tippecanoe:count:NE_ID": 1159320631, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320631, "tippecanoe:sum:NE_ID": 1159320631, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "821727fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1293119, "tippecanoe:max:POP_EST": 1293119, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 1293119, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 2017, "tippecanoe:max:GDP_MD": 2017, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 2017, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424968, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID": 23424968, "tippecanoe:count:WOE_ID_EH": 23424968, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424968, "tippecanoe:sum:WOE_ID_EH": 23424968, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 125.854679, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_X": 125.854679, "tippecanoe:count:LABEL_Y": -8.803705, "tippecanoe:max:LABEL_Y": -8.803705, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -8.803705, "tippecanoe:count:NE_ID": 1159321313, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159321313, "tippecanoe:sum:NE_ID": 1159321313, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "82049ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 5, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2387, "tippecanoe:max:POP_EST": 2387, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 2387, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 35, "tippecanoe:max:GDP_MD": 35, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 35, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": -90, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 23424869, "tippecanoe:max:WOE_ID_EH": 23424869, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 23424869, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 17, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 17, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 24, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 24, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 13, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 13, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 9.5, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 105.67259, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_X": 105.67259, "tippecanoe:count:LABEL_Y": -10.490789, "tippecanoe:max:LABEL_Y": -10.490789, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -10.490789, "tippecanoe:count:NE_ID": 1159320363, "tippecanoe:max:NE_ID": 1159320363, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 1159320363, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821747fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 3, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 287800, "tippecanoe:max:POP_EST": 287800, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 287800, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 10770, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 10770, "tippecanoe:sum:GDP_MD": 10770, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424903, "tippecanoe:max:WOE_ID": 23424903, "tippecanoe:min:WOE_ID": 23424903, "tippecanoe:sum:WOE_ID": 23424903, "tippecanoe:count:WOE_ID_EH": 23424903, "tippecanoe:max:WOE_ID_EH": 23424903, "tippecanoe:min:WOE_ID_EH": 23424903, "tippecanoe:sum:WOE_ID_EH": 23424903, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4.6, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_LABEL": 4.6, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 165.084004, "tippecanoe:max:LABEL_X": 165.084004, "tippecanoe:min:LABEL_X": 165.084004, "tippecanoe:sum:LABEL_X": 165.084004, "tippecanoe:count:LABEL_Y": -21.064697, "tippecanoe:max:LABEL_Y": -21.064697, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -21.064697, "tippecanoe:count:NE_ID": 1159320641, "tippecanoe:max:NE_ID": 1159320641, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 1159320641, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821777fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "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": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 3, "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": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821767fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "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": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 669823, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 669823, "tippecanoe:sum:POP_EST": 669823, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1589, "tippecanoe:max:GDP_MD": 1589, "tippecanoe:min:GDP_MD": 1589, "tippecanoe:sum:GDP_MD": 1589, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424766, "tippecanoe:max:WOE_ID": 23424766, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 23424766, "tippecanoe:count:WOE_ID_EH": 23424766, "tippecanoe:max:WOE_ID_EH": 23424766, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 23424766, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 159.170468, "tippecanoe:max:LABEL_X": 159.170468, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 159.170468, "tippecanoe:count:LABEL_Y": -8.029548, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -8.029548, "tippecanoe:sum:LABEL_Y": -8.029548, "tippecanoe:count:NE_ID": 1159321249, "tippecanoe:max:NE_ID": 1159321249, "tippecanoe:min:NE_ID": 1159321249, "tippecanoe:sum:NE_ID": 1159321249, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "821047fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 11513100, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 40895, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424762, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 23424762, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": -64.593433, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": -16.666015, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1159320439, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8204cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 13, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 113815, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 401, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 23424815, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 23424815, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 158.234019, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 6.887553, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1159320691, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 52573973, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 95503, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424863, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID_EH": 23424863, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 37.907632, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_Y": 0.549043, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:NE_ID": 1159320971, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "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": "820ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 6, "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": 31825295, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 31825295, "tippecanoe:sum:POP_EST": 31825295, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 88815, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 88815, "tippecanoe:sum:GDP_MD": 88815, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424745, "tippecanoe:max:WOE_ID": 23424745, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 23424745, "tippecanoe:count:WOE_ID_EH": 23424745, "tippecanoe:max:WOE_ID_EH": 23424745, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 23424745, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 17.984249, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_X": 17.984249, "tippecanoe:count:LABEL_Y": -12.182762, "tippecanoe:max:LABEL_Y": -12.182762, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -12.182762, "tippecanoe:count:NE_ID": 1159320323, "tippecanoe:max:NE_ID": 1159320323, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 1159320323, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , @@ -122,17 +122,17 @@ , { "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": "82156ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 3, "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": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 530953, "tippecanoe:max:POP_EST": 530953, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 530953, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 5642, "tippecanoe:max:GDP_MD": 5642, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 5642, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424899, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID": 23424899, "tippecanoe:count:WOE_ID_EH": 23424899, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424899, "tippecanoe:sum:WOE_ID_EH": 23424899, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 2, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 73.507554, "tippecanoe:max:LABEL_X": 73.507554, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 73.507554, "tippecanoe:count:LABEL_Y": 4.174441, "tippecanoe:max:LABEL_Y": 4.174441, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 4.174441, "tippecanoe:count:NE_ID": 1159321053, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321053, "tippecanoe:sum:NE_ID": 1159321053, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8204d7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 5, "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": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 18008, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 268, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424927, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 23424927, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 2, "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": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 134.580157, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 7.518252, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1159321171, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 5703569, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 372062, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424948, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID_EH": 23424948, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 3, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 103.816925, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_Y": 1.366587, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:NE_ID": 1159321247, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "82104ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 211049527, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1839758, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424768, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 23424768, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": -49.55945, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": -12.098687, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1159320441, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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 ] ] ] } } , 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 e4475e6f..7064a425 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 @@ -4,7 +4,7 @@ , { "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": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 37589262, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1736425, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424775, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 23424775, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": -101.9107, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 60.324287, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1159320467, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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 ] ] ] } } , @@ -22,15 +22,15 @@ , { "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": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "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": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 3, "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": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 25364307, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1396567, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": -90, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 23424748, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 134.04972, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": -24.129522, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1159320355, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "81377ffffffffff", "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "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": 5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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 ] ] ] } } +{ "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 ] ] ] } } , { "type": "Feature", "properties": { "bin": "8123bffffffffff", "tippecanoe:count:scalerank": 12, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 12, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 51, "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": 1, "tippecanoe:sum:LEVEL": 23, "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": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 28, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 70, "tippecanoe:count:POP_EST": 12, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:min:POP_EST": 64948, "tippecanoe:sum:POP_EST": 131093366, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 152, "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": 323615, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 824875, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 24226, "tippecanoe:count:WOE_ID": 12, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 281097894, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 281097894, "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": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 95, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 99, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:TINY": 12, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -984, "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": 2.5, "tippecanoe:sum:MIN_LABEL": 45.7, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 105, "tippecanoe:count:LABEL_X": 12, "tippecanoe:max:LABEL_X": -73.174347, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -992.3850929999999, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": 153.027195, "tippecanoe:count:NE_ID": 12, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 13911849352, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 1.9166666666666668, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:mean:POP_EST": 10924447.166666666, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 68739.58333333333, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 23424824.5, "tippecanoe:mean:WOE_ID_EH": 23424824.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.916666666666667, "tippecanoe:mean:LONG_LEN": 8.25, "tippecanoe:mean:ABBREV_LEN": 4.833333333333333, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.8083333333333337, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -82.69875774999999, "tippecanoe:mean:LABEL_Y": 12.75226625, "tippecanoe:mean:NE_ID": 1159320779.3333333, "tippecanoe:count": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.027832, 46.905246 ], [ -153.039551, 43.436966 ], [ -154.775391, 39.909736 ], [ -157.478027, 39.419221 ], [ -159.938965, 39.095963 ], [ -163.388672, 42.455888 ], [ -161.564941, 46.513516 ], [ -156.027832, 46.905246 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81233ffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "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": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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 ] ] ] } } , @@ -40,7 +40,7 @@ , { "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": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1265711, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 14048, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424894, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 23424894, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 2, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 57.565848, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": -20.299506, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1159321079, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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 ] ] ] } } , @@ -54,14 +54,14 @@ , { "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": "81447ffffffffff", "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 4917000, "tippecanoe:max:POP_EST": 4917000, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 4917000, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 206928, "tippecanoe:max:GDP_MD": 206928, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 206928, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424916, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID": 23424916, "tippecanoe:count:WOE_ID_EH": 23424916, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424916, "tippecanoe:sum:WOE_ID_EH": 23424916, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "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": 2, "tippecanoe:sum:MIN_LABEL": 2, "tippecanoe:count:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 172.787, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 172.787, "tippecanoe:sum:LABEL_X": 172.787, "tippecanoe:count:LABEL_Y": -39.759, "tippecanoe:max:LABEL_Y": -39.759, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -39.759, "tippecanoe:count:NE_ID": 1159321135, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159321135, "tippecanoe:sum:NE_ID": 1159321135, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "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": "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": "81227ffffffffff", "tippecanoe:count:scalerank": 0, "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": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 5, "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": 328239523, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 328239523, "tippecanoe:sum:POP_EST": 328239523, "tippecanoe:count:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 21433226, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 21433226, "tippecanoe:sum:GDP_MD": 21433226, "tippecanoe:count:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 23424977, "tippecanoe:max:WOE_ID": 23424977, "tippecanoe:min:WOE_ID": 23424977, "tippecanoe:sum:WOE_ID": 23424977, "tippecanoe:count:WOE_ID_EH": 23424977, "tippecanoe:max:WOE_ID_EH": 23424977, "tippecanoe:min:WOE_ID_EH": 23424977, "tippecanoe:sum:WOE_ID_EH": 23424977, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 24, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 24, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": -99, "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": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": -97.482602, "tippecanoe:max:LABEL_X": -97.482602, "tippecanoe:min:LABEL_X": -97.482602, "tippecanoe:sum:LABEL_X": -97.482602, "tippecanoe:count:LABEL_Y": 39.538479, "tippecanoe:max:LABEL_Y": 39.538479, "tippecanoe:min:LABEL_Y": 39.538479, "tippecanoe:sum:LABEL_Y": 39.538479, "tippecanoe:count:NE_ID": 1159321369, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159321369, "tippecanoe:sum:NE_ID": 1159321369, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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": "8171bffffffffff", "tippecanoe:count:scalerank": 0, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 0, "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": 2, "tippecanoe:count:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 0, "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": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 5, "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": -99, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 4490, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 898, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 28289409, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 28289409, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": -99, "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": 0, "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": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 35.885455, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": -79.843222, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1159320335, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": nan, "tippecanoe:mean:LABELRANK": 1, "tippecanoe:mean:ADM0_DIF": nan, "tippecanoe:mean:LEVEL": 1, "tippecanoe:mean:GEOU_DIF": nan, "tippecanoe:mean:SU_DIF": nan, "tippecanoe:mean:BRK_DIFF": nan, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 1, "tippecanoe:mean:GDP_MD": 1, "tippecanoe:mean:GDP_YEAR": 1, "tippecanoe:mean:WOE_ID": 1, "tippecanoe:mean:WOE_ID_EH": 1, "tippecanoe:mean:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_WB": 1, "tippecanoe:mean:NAME_LEN": 1, "tippecanoe:mean:LONG_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 1, "tippecanoe:mean:TINY": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": nan, "tippecanoe:mean:MIN_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 1, "tippecanoe:mean:LABEL_X": 1, "tippecanoe:mean:LABEL_Y": 1, "tippecanoe:mean:NE_ID": 1, "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": "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 ] ] ] ] } } ] } ] }