From c5f2f0da344d8509fd8d8d5133066e4daa6e4315 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Fri, 20 Sep 2024 15:30:29 -0700 Subject: [PATCH] More work on plumbing attribute accumulation through (#263) * Plumb bounding boxes through potential intersections * Quick bbox reject for bins that can't possibly intersect * Inching toward attribute accumulation in megatile handling * Some sort of test for how all these things interact with each other. Automatic numeric attribute accumulation does *not* apply to attributes that have an explicit attribute accumulator set, because the order of operations is too messy and weird * More sketching * More sketching * Actually do some accumulation * Put all that behind an --accumulate-numeric flag * Use the same attribute accumulation logic in binning as in megatiles * Fix backwards conditional * Add means, but somehow I have some counts of 0 * Handle aggregated attributes with no base attribute in the feature * Checkpoint before I break everything * Found a flaw, now to debug * Fix a typo that broke accumulation * Add binning tests * Make sure IDs make it through on the bins * Fix count/mean accumulation * Make the numeric accumulation prefix configurable * Make sure the accumulate test still works with a different prefix * Forgot to update this test * More testing to make sure cluster sizes make it all the way through * Fix neglected --accumulate-attribute when binning * Mark unexercised attribute accumulation cases as "can't happen" * Factor out numeric preservation * Attrs with the accumulation prefix are just preserved, not accumulated * Test behavior of prefixed attributes * Plumbing for exclude and exclude-prefix * Implement and test attribute prefix stripping in overzoom * Update version and changelog * For debugging, make an attribute list of source feature IDs * Revert "For debugging, make an attribute list of source feature IDs" This reverts commit 65fc99c9d127c14e4eed7eff1a682ea0c7012c26. --- CHANGELOG.md | 6 + Makefile | 102 +- attribute.cpp | 60 +- attribute.hpp | 3 + clip.cpp | 409 +- geometry.cpp | 1 - geometry.hpp | 18 +- main.cpp | 5 +- main.hpp | 1 + options.hpp | 1 - overzoom.cpp | 20 +- ...um%3asum_--retain-points-multiplier_3.json | 1466 +++++++ tests/ne_110m_populated_places_nulls/in.json | 243 ++ tests/pbf/0-0-0-pop-0-0-0.pbf.out.json | 244 +- tests/pbf/0-0-0-pop-1-1-0.pbf.out.json | 3432 +---------------- tests/pbf/0-0-0-pop-2-0-1.pbf.out.json | 218 +- tests/pbf/bin-11-327-791.pbf.out.json | 36 +- tests/pbf/h3-0-0-0.geojson | 2 +- text.cpp | 14 + text.hpp | 1 + tile-join.cpp | 4 +- tile.cpp | 19 +- version.hpp | 2 +- 23 files changed, 2387 insertions(+), 3920 deletions(-) create mode 100644 tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json create mode 100644 tests/ne_110m_populated_places_nulls/in.json diff --git a/CHANGELOG.md b/CHANGELOG.md index f68a85645..e72daa75c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 2.62.3 + +* Summary statistics with --accumulate-numeric-attributes make it from tiling through to binning +* Prefix can be specified for --accumulate-numeric-attributes +* Added --exclude and --exclude-prefix to tippecanoe-overzoom + # 2.62.2 * Pass feature ID through with bins diff --git a/Makefile b/Makefile index aab3484aa..aa0564fc0 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ indent: TESTS = $(wildcard tests/*/out/*.json) SPACE = $(NULL) $(NULL) -test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) raw-tiles-test parallel-test pbf-test join-test enumerate-test decode-test join-filter-test unit json-tool-test allow-existing-test csv-test layer-json-test pmtiles-test decode-pmtiles-test overzoom-test +test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) raw-tiles-test parallel-test pbf-test join-test enumerate-test decode-test join-filter-test unit json-tool-test allow-existing-test csv-test layer-json-test pmtiles-test decode-pmtiles-test overzoom-test accumulate-test ./unit suffixes = json json.gz @@ -367,15 +367,15 @@ overzoom-test: tippecanoe-overzoom cmp tests/pbf/bin-11-327-791.pbf.out.json.check tests/pbf/bin-11-327-791.pbf.out.json rm tests/pbf/bin-11-327-791.pbf.out.json.check tests/pbf/bin-11-327-791.pbf.out # Binning with longitude wraparound problems - ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-2-0-1.pbf.out --assign-to-bins tests/pbf/h3-2-0-1.geojson tests/pbf/0-0-0.pbf 2/0/1 2/0/1 + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-2-0-1.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-2-0-1.geojson tests/pbf/0-0-0.pbf 2/0/1 2/0/1 ./tippecanoe-decode tests/pbf/0-0-0-pop-2-0-1.pbf.out 2 0 1 > tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check cmp tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check tests/pbf/0-0-0-pop-2-0-1.pbf.out.json rm tests/pbf/0-0-0-pop-2-0-1.pbf.out tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check - ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-1-1-0.pbf.out --assign-to-bins tests/pbf/h3-1-1-0.geojson tests/pbf/0-0-0.pbf 1/1/0 1/1/0 + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-1-1-0.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-1-1-0.geojson tests/pbf/0-0-0.pbf 1/1/0 1/1/0 ./tippecanoe-decode tests/pbf/0-0-0-pop-1-1-0.pbf.out 1 1 0 > tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check cmp tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check tests/pbf/0-0-0-pop-1-1-0.pbf.out.json rm tests/pbf/0-0-0-pop-1-1-0.pbf.out tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check - ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-0-0-0.pbf.out --assign-to-bins tests/pbf/h3-0-0-0.geojson tests/pbf/0-0-0.pbf 0/0/0 0/0/0 + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-0-0-0.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-0-0-0.geojson tests/pbf/0-0-0.pbf 0/0/0 0/0/0 ./tippecanoe-decode tests/pbf/0-0-0-pop-0-0-0.pbf.out 0 0 0 > tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check cmp tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check tests/pbf/0-0-0-pop-0-0-0.pbf.out.json rm tests/pbf/0-0-0-pop-0-0-0.pbf.out tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check @@ -515,6 +515,100 @@ join-test: tippecanoe tippecanoe-decode tile-join cmp tests/ne_110m_ocean/join/joined.mbtiles.json.check tests/ne_110m_ocean/join/joined.mbtiles.json rm -f tests/ne_110m_ocean/join/ocean.mbtiles tests/ne_110m_ocean/join/countries.mbtiles tests/ne_110m_ocean/join/joined.mbtiles tests/ne_110m_ocean/join/joined.mbtiles.json.check +accumulate-test: + # there are 144 features with POP1950 in the original dataset + test `grep '"POP1950": [0-9]' tests/ne_110m_populated_places_nulls/in.json | wc -l` == 144 + # and 99 without it + test `grep '"POP1950": null' tests/ne_110m_populated_places_nulls/in.json | wc -l` == 99 + ./tippecanoe -yNAME -yPOP1950 -yclustered:cluster_size -yclustered:unrelated -q -z3 -r1.75 -b0 -f -e tests/pbf/accum.dir --accumulate-numeric-attributes=clustered --set-attribute '{"clustered:cluster_size":1}' --accumulate-attribute '{"clustered:cluster_size":"sum"}' --retain-points-multiplier 3 tests/ne_110m_populated_places_nulls/in.json + # at this drop rate, there are 6 points at z0 that have no POP1950s clustered onto them.... + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | wc -l` == 78 + # 35 of which have no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 35 + # 43 of which do have POP1950 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 43 + # plus 59 that are clustered + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 59 + # the 59 clustered POP1950s have a total count of 101 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:count:POP1950' | sed 's/.*"clustered:count:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 101 + # we have already established that there are 43 bare POP1950s + # which makes a total of 144, which is the total count expected + # + # meanwhile, regular attribute accumulation. + # there are 137 features in the z0 tile, and they all have clustered:cluster_size + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:cluster_size' | wc -l` == 137 + # there are no features that lack it. + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:cluster_size' | wc -l` == 0 + # they add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # But that we *do* preserve those attributes into the output features: + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 66 + # + # on to the sums: + # in the original data set, the POP1950s that are present add up to 161590 + test `grep '"POP1950": [0-9]' tests/ne_110m_populated_places_nulls/in.json | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}' ` == 161590 + # in the z0 tile, the clustered POP1950s add up to 113357 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 113357 + # and the non-clustered ones add up to 48233 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:sum:POP1950' | grep POP1950 | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}'` == 48233 + # which is the correct 161590 + # + # OK, so do these still hold after megatile filtering? + ./tippecanoe-overzoom --accumulate-numeric-attributes=clustered --accumulate-attribute '{"clustered:cluster_size":"sum"}' -m -o tests/pbf/accum-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # Now there are 40 features with POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 40 + # There are 4 with bare POP1950 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 4 + # And 2 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 2 + # (which is the same as you get if you don't use -retain-points-multiplier when creating the tileset) + # + # the clustered and megatile-filtered POP1950s add up to 146370 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 146370 + # the non-clustered but megatile-filtered POP1950s add up to 15220 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:sum:POP1950' | grep POP1950 | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}'` == 15220 + # which add up to 161590 so we have the right global total + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # But that we *do* preserve those attributes into the output features: + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 22 + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # We actually want to serve point tiles without the numeric accumulations, + # but with cluster size, so test that combination: + ./tippecanoe-overzoom --accumulate-attribute '{"clustered:cluster_size":"sum"}' --exclude-prefix clustered:sum --exclude-prefix clustered:count --exclude-prefix clustered:min --exclude-prefix clustered:max --exclude-prefix clustered:mean -m -o tests/pbf/accum-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # There are no POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 0 + # But there are still 28 with bare POP1950 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 28 + # And 18 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 18 + # which matches the 46 features that you get if you tile without --retain-points-multiplier. + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # Now on to binning! + ./tippecanoe-overzoom --assign-to-bins tests/pbf/h3-0-0-0.geojson --accumulate-numeric-attributes=clustered --accumulate-attribute '{"clustered:cluster_size":"sum"}' -o tests/pbf/bins-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # Now there are 30 bins with POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 44 + # There are none with bare POP1950 (which is expected; we should only have summary statistics) + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 0 + # And 4 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 4 + # + # the clustered and megatile-filtered and binned POP1950s add up to 161590 + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 161590 + # which is the right global total + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # And those attributes do *not* make it onto the bins + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 0 + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + join-filter-test: tippecanoe tippecanoe-decode tile-join # Comes out different from the direct tippecanoe run because null attributes are lost ./tippecanoe -q -z0 -f -o tests/feature-filter/out/all.mbtiles tests/feature-filter/in.json diff --git a/attribute.cpp b/attribute.cpp index e969ab12f..5a06a4f44 100644 --- a/attribute.cpp +++ b/attribute.cpp @@ -6,6 +6,13 @@ #include "jsonpull/jsonpull.h" #include "milo/dtoa_milo.h" +std::map numeric_operations = { + {"sum", op_sum}, + {"min", op_min}, + {"max", op_max}, + {"count", op_count}, +}; + void set_attribute_accum(std::unordered_map &attribute_accum, std::string name, std::string type) { attribute_op t; @@ -88,12 +95,12 @@ void preserve_attribute(attribute_op const &op, std::string const &key, serial_v case op_sum: full_values[i].s = milo::dtoa_milo(atof(full_values[i].s.c_str()) + atof(val.s.c_str())); full_values[i].type = mvt_double; - break; + return; case op_product: full_values[i].s = milo::dtoa_milo(atof(full_values[i].s.c_str()) * atof(val.s.c_str())); full_values[i].type = mvt_double; - break; + return; case op_max: { double existing = atof(full_values[i].s.c_str()); @@ -102,7 +109,7 @@ void preserve_attribute(attribute_op const &op, std::string const &key, serial_v full_values[i].s = val.s.c_str(); full_values[i].type = mvt_double; } - break; + return; } case op_min: { @@ -112,7 +119,7 @@ void preserve_attribute(attribute_op const &op, std::string const &key, serial_v full_values[i].s = val.s.c_str(); full_values[i].type = mvt_double; } - break; + return; } case op_mean: { @@ -124,24 +131,26 @@ void preserve_attribute(attribute_op const &op, std::string const &key, serial_v attribute_accum_state.insert(std::pair(key, s)); full_values[i].s = milo::dtoa_milo(s.sum / s.count); + full_values[i].type = mvt_double; } else { state->second.sum += atof(val.s.c_str()); state->second.count += 1; full_values[i].s = milo::dtoa_milo(state->second.sum / state->second.count); + full_values[i].type = mvt_double; } - break; + return; } case op_concat: full_values[i].s += val.s; full_values[i].type = mvt_string; - break; + return; case op_comma: full_values[i].s += std::string(",") + val.s; full_values[i].type = mvt_string; - break; + return; case op_count: { auto state = attribute_accum_state.find(key); @@ -155,9 +164,44 @@ void preserve_attribute(attribute_op const &op, std::string const &key, serial_v state->second.count += 1; full_values[i].s = std::to_string(state->second.count); } - break; + return; } } } } + + // not found, so we are making a new value + + serial_val sv; + switch (op) { + case op_sum: + case op_max: + case op_min: + sv.s = val.s; + sv.type = mvt_double; + break; + + case op_count: { + auto state = attribute_accum_state.find(key); + if (state == attribute_accum_state.end()) { // not already present + accum_state s; + s.count = 1; + attribute_accum_state.insert(std::pair(key, s)); + + sv.s = std::to_string(s.count); + } else { // already present, incrementing + fprintf(stderr, "preserve_attribute: can't happen (count)\n"); + exit(EXIT_IMPOSSIBLE); + } + sv.type = mvt_double; + break; + } + + default: + fprintf(stderr, "can't happen: operation that isn't used by --accumulate-numeric-attributes\n"); + exit(EXIT_IMPOSSIBLE); + } + + full_keys.push_back(key); + full_values.push_back(sv); } diff --git a/attribute.hpp b/attribute.hpp index af860ffa4..ce54dcba5 100644 --- a/attribute.hpp +++ b/attribute.hpp @@ -3,6 +3,7 @@ #include #include +#include enum attribute_op { op_sum, @@ -26,4 +27,6 @@ void set_attribute_accum(std::unordered_map &attribut void set_attribute_accum(std::unordered_map &attribute_accum, const char *arg, char **argv); void preserve_attribute(attribute_op const &op, const std::string &key, serial_val const &val, std::vector &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state); +extern std::map numeric_operations; + #endif diff --git a/clip.cpp b/clip.cpp index 182458824..c1bf81f19 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1076,12 +1076,17 @@ bool pnpoly_mp(std::vector const &geom, long long x, long long y) } std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data, double simplification, - double tiny_polygon_size, std::vector const &bins) { + double tiny_polygon_size, std::vector const &bins, + std::string const &accumulate_numeric) { std::vector decoded; for (auto const &t : tiles) { @@ -1107,9 +1112,10 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int n decoded.push_back(out); } - return overzoom(decoded, nz, nx, ny, detail, buffer, keep, do_compress, next_overzoomed_tiles, demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins); + return overzoom(decoded, nz, nx, ny, detail, buffer, keep, exclude, exclude_prefix, do_compress, next_overzoomed_tiles, demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins, accumulate_numeric); } +// like a minimal serial_feature, but with mvt_feature-style attributes struct tile_feature { drawvec geom; int t; @@ -1120,7 +1126,147 @@ struct tile_feature { size_t seq = 0; }; -static void feature_out(std::vector const &features, mvt_layer &outlayer, std::set const &keep, std::unordered_map const &attribute_accum, std::shared_ptr const &tile_stringpool) { +static void add_mean(mvt_feature &feature, mvt_layer &layer, std::string const &accumulate_numeric) { + std::string accumulate_numeric_colon = accumulate_numeric + ":"; + + std::unordered_map attributes; + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + std::string const &key = layer.keys[feature.tags[i]]; + if (starts_with(key, accumulate_numeric_colon)) { + attributes.emplace(key, i); + } + } + + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + std::string accumulate_numeric_sum_colon = accumulate_numeric + ":sum:"; + + std::string const &key = layer.keys[feature.tags[i]]; + if (starts_with(key, accumulate_numeric_sum_colon)) { + std::string trunc = key.substr(accumulate_numeric_sum_colon.size()); + auto const f = attributes.find(accumulate_numeric + ":count:" + trunc); + 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) / count_val; + layer.tag(feature, accumulate_numeric + ":mean:" + trunc, mean); + } + } + } +}; + +// accumulate :sum:, :min:, :max:, and :count: versions of the specified attribute +static void preserve_numeric(const std::string &key, const mvt_value &val, // numeric attribute being accumulated + std::vector &full_keys, // keys of feature being accumulated onto + std::vector &full_values, // values of features being accumulated onto + const std::string &accumulate_numeric, // prefix of accumulations + std::set &keys, // key presence in the source feature + std::map &numeric_out_field, // key index in the output feature + std::unordered_map &attribute_accum_state // accumulation state for preserve_attribute() +) { + // If this is a numeric attribute, but there is also a prefix:sum (etc.) for the + // same attribute, we want to use that one instead of this one. + + for (auto const &op : numeric_operations) { + std::string compound_key = accumulate_numeric + ":" + op.first + ":" + key; + auto compound_found = keys.find(compound_key); + if (compound_found != keys.end()) { + // found, so skip this one + } else { + // not found, so accumulate this one + + // if this is already prefixed, strip off the prefix + // if it is the right one, and skip the attribute if + // it is the wrong one. + + std::string outkey = key; + if (starts_with(outkey, accumulate_numeric + ":")) { + std::string prefix = accumulate_numeric + ":" + op.first + ":"; + if (starts_with(outkey, prefix)) { + outkey = outkey.substr(prefix.size()); + } else { + continue; // to next operation + } + } + // and then put it back on for the output field + std::string prefixed = accumulate_numeric + ":" + op.first + ":" + outkey; + + // Does it exist in the output feature already? + + auto prefixed_attr = numeric_out_field.find(prefixed); + if (prefixed_attr == numeric_out_field.end()) { + // No? Does it exist unprefixed in the output feature already? + + auto out_attr = numeric_out_field.find(outkey); + if (out_attr == numeric_out_field.end()) { + // 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); + 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); + 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); + } + } else { + // exists, so accumulate on our value + preserve_attribute(op.second, prefixed, mvt_value_to_serial_val(val), full_keys, full_values, attribute_accum_state); + } + } + } +} + +static bool should_keep(std::string const &key, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix) { + if (keep.size() == 0 || keep.find(key) != keep.end()) { + if (exclude.find(key) != exclude.end()) { + return false; + } + + for (auto const &prefix : exclude_prefix) { + if (starts_with(key, prefix)) { + return false; + } + } + + return true; + } + + return false; +} + +static void feature_out(std::vector const &features, mvt_layer &outlayer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + std::unordered_map const &attribute_accum, + std::shared_ptr const &tile_stringpool, + std::string const &accumulate_numeric) { // Add geometry to output feature mvt_feature outfeature; @@ -1139,7 +1285,7 @@ static void feature_out(std::vector const &features, mvt_layer &ou outfeature.seq = features[0].seq; - if (attribute_accum.size() > 0) { + if (attribute_accum.size() > 0 || accumulate_numeric.size() > 0) { // convert the attributes of the output feature // from mvt_value to serial_val so they can have // attributes from the other features of the @@ -1148,16 +1294,23 @@ static void feature_out(std::vector const &features, mvt_layer &ou std::unordered_map attribute_accum_state; std::vector full_keys; std::vector full_values; + std::map numeric_out_field; for (size_t i = 0; i + 1 < features[0].tags.size(); i += 2) { - auto f = attribute_accum.find(features[0].layer->keys[features[0].tags[i]]); + const std::string &key = features[0].layer->keys[features[0].tags[i]]; + auto f = attribute_accum.find(key); if (f != attribute_accum.end()) { // this attribute has an accumulator, so convert it full_keys.push_back(features[0].layer->keys[features[0].tags[i]]); full_values.push_back(mvt_value_to_serial_val(features[0].layer->values[features[0].tags[i + 1]])); + } else if (accumulate_numeric.size() > 0 && features[0].layer->values[features[0].tags[i + 1]].is_numeric()) { + // convert numeric for accumulation + numeric_out_field.emplace(key, full_keys.size()); + full_keys.push_back(key); + full_values.push_back(mvt_value_to_serial_val(features[0].layer->values[features[0].tags[i + 1]])); } else { // otherwise just tag it directly onto the output feature - if (keep.size() == 0 || keep.find(features[0].layer->keys[features[0].tags[i]]) != keep.end()) { + if (should_keep(features[0].layer->keys[features[0].tags[i]], keep, exclude, exclude_prefix)) { outlayer.tag(outfeature, features[0].layer->keys[features[0].tags[i]], features[0].layer->values[features[0].tags[i + 1]]); } } @@ -1168,13 +1321,27 @@ static void feature_out(std::vector const &features, mvt_layer &ou // features that will not for (size_t i = 1; i < features.size(); i++) { + std::set keys; + + for (size_t j = 0; j + 1 < features[i].tags.size(); j += 2) { + const std::string &key = features[i].layer->keys[features[i].tags[j]]; + keys.insert(key); + } + for (size_t j = 0; j + 1 < features[i].tags.size(); j += 2) { - std::string key = features[i].layer->keys[features[i].tags[j]]; + const std::string &key = features[i].layer->keys[features[i].tags[j]]; auto f = attribute_accum.find(key); if (f != attribute_accum.end()) { serial_val val = mvt_value_to_serial_val(features[i].layer->values[features[i].tags[j + 1]]); preserve_attribute(f->second, key, val, full_keys, full_values, attribute_accum_state); + } else if (accumulate_numeric.size() > 0) { + const mvt_value &val = features[i].layer->values[features[i].tags[j + 1]]; + if (val.is_numeric()) { + preserve_numeric(key, val, full_keys, full_values, + accumulate_numeric, + keys, numeric_out_field, attribute_accum_state); + } } } } @@ -1183,13 +1350,17 @@ static void feature_out(std::vector const &features, mvt_layer &ou // and tag them onto the output feature for (size_t i = 0; i < full_keys.size(); i++) { - if (keep.size() == 0 || keep.find(full_keys[i]) != keep.end()) { + if (should_keep(full_keys[i], keep, exclude, exclude_prefix)) { outlayer.tag(outfeature, full_keys[i], stringified_to_mvt_value(full_values[i].type, full_values[i].s.c_str(), tile_stringpool)); } } + + if (accumulate_numeric.size() > 0) { + add_mean(outfeature, outlayer, accumulate_numeric); + } } else { for (size_t i = 0; i + 1 < features[0].tags.size(); i += 2) { - if (keep.size() == 0 || keep.find(features[0].layer->keys[features[0].tags[i]]) != keep.end()) { + if (should_keep(features[0].layer->keys[features[0].tags[i]], keep, exclude, exclude_prefix)) { outlayer.tag(outfeature, features[0].layer->keys[features[0].tags[i]], features[0].layer->values[features[0].tags[i + 1]]); } } @@ -1214,9 +1385,11 @@ struct index_event { } kind; size_t layer; size_t feature; + long long xmin, ymin, xmax, ymax; - index_event(unsigned long long where_, index_event_kind kind_, size_t layer_, size_t feature_) - : where(where_), kind(kind_), layer(layer_), feature(feature_) { + index_event(unsigned long long where_, index_event_kind kind_, size_t layer_, size_t feature_, + long long xmin_, long long ymin_, long long xmax_, long long ymax_) + : where(where_), kind(kind_), layer(layer_), feature(feature_), xmin(xmin_), ymin(ymin_), xmax(xmax_), ymax(ymax_) { } bool operator<(const index_event &ie) const { @@ -1287,7 +1460,29 @@ void get_quadkey_bounds(long long xmin, long long ymin, long long xmax, long lon } } -mvt_tile assign_to_bins(mvt_tile const &features, std::vector const &bins, int z, int x, int y, int detail) { +static bool bbox_intersects(long long x1min, long long y1min, long long x1max, long long y1max, + long long x2min, long long y2min, long long x2max, long long y2max) { + if (x1max < x2min) { + return false; + } + if (x2max < x1min) { + return false; + } + if (y1max < y2min) { + return false; + } + if (y2max < y1min) { + return false; + } + return true; +} + +mvt_tile assign_to_bins(mvt_tile const &features, std::vector const &bins, int z, int x, int y, int detail, + std::unordered_map const &attribute_accum, + std::string const &accumulate_numeric, + std::set keep, + std::set exclude, + std::vector exclude_prefix) { std::vector events; // Index bins @@ -1298,8 +1493,8 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & get_bbox(bins[i].features[j].geometry, &xmin, &ymin, &xmax, &ymax, z, x, y, detail); get_quadkey_bounds(xmin, ymin, xmax, ymax, &start, &end); - events.emplace_back(start, index_event::ENTER, i, j); - events.emplace_back(end, index_event::EXIT, i, j); + events.emplace_back(start, index_event::ENTER, i, j, xmin, ymin, xmax, ymax); + events.emplace_back(end, index_event::EXIT, i, j, xmin, ymin, xmax, ymax); } } @@ -1312,146 +1507,91 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & if (features.layers[i].features[j].geometry.size() > 0) { get_bbox(features.layers[i].features[j].geometry, &xmin, &ymin, &xmax, &ymax, z, x, y, detail); get_quadkey_bounds(xmin, ymin, xmax, ymax, &start, &end); - events.emplace_back(start, index_event::CHECK, i, j); + events.emplace_back(start, index_event::CHECK, i, j, xmin, ymin, xmax, ymax); } } } std::sort(events.begin(), events.end()); std::set active; - std::vector counters; // separate because set items can't be mutated from an iterator - std::vector> sums; // separate because set items can't be mutated from an iterator - std::vector> maxes; // separate because set items can't be mutated from an iterator - std::vector> mins; // separate because set items can't be mutated from an iterator - std::vector> counts; // separate because set items can't be mutated from an iterator mvt_layer outlayer; outlayer.extent = 1 << detail; outlayer.version = 2; outlayer.name = features.layers[0].name; + std::vector> outfeatures; + std::shared_ptr tile_stringpool = std::make_shared(); + for (auto &e : events) { if (e.kind == index_event::ENTER) { active_bin a(e.layer, e.feature); + a.xmin = e.xmin; + a.ymin = e.ymin; + a.xmax = e.xmax; + a.ymax = e.ymax; const mvt_feature &bin = bins[e.layer].features[e.feature]; - mvt_feature outfeature; - outfeature.geometry = bin.geometry; - outfeature.type = bin.type; + + tile_feature outfeature; + for (auto const &g : bin.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); + } + outfeature.t = bin.type; outfeature.has_id = bin.has_id; outfeature.id = bin.id; - a.outfeature = outlayer.features.size(); + outfeature.tags = bin.tags; + outfeature.layer = &bins[e.layer]; + outfeature.seq = e.feature; - a.counter = counters.size(); - counters.push_back(0); - sums.emplace_back(); - maxes.emplace_back(); - mins.emplace_back(); - counts.emplace_back(); + a.outfeature = outfeatures.size(); + outfeatures.push_back({std::move(outfeature)}); - outlayer.features.push_back(std::move(outfeature)); active.insert(std::move(a)); } else if (e.kind == index_event::CHECK) { auto const &feature = features.layers[e.layer].features[e.feature]; -#if 0 - for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { - printf("%s ", features.layers[e.layer].values[feature.tags[i + 1]].toString().c_str()); - } - printf(": "); -#endif for (auto const &a : active) { auto const &bin = bins[a.layer].features[a.feature]; - // XXX do bounding box check first - if (pnpoly_mp(bin.geometry, feature.geometry[0].x, feature.geometry[0].y)) { -#if 0 - printf("found: "); - - for (size_t i = 0; i + 1 < bin.tags.size(); i += 2) { - printf("%s ", bins[a.first].values[bin.tags[i + 1]].toString().c_str()); - } - printf("\n"); -#endif - counters[a.counter]++; - - for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { - const mvt_value &val = features.layers[e.layer].values[feature.tags[i + 1]]; - const std::string &key = features.layers[e.layer].keys[feature.tags[i]]; - - if (val.is_numeric()) { - auto sum_attr = sums[a.counter].find(key); - if (sum_attr == sums[a.counter].end()) { - sums[a.counter].emplace(key, 0); - mins[a.counter].emplace(key, std::numeric_limits::infinity()); - maxes[a.counter].emplace(key, -std::numeric_limits::infinity()); - counts[a.counter].emplace(key, 0); - - sum_attr = sums[a.counter].find(key); - } - - auto min_attr = mins[a.counter].find(key); - auto max_attr = maxes[a.counter].find(key); - auto count_attr = counts[a.counter].find(key); - double v = mvt_value_to_double(val); - - sum_attr->second += v; - count_attr->second += 1; - min_attr->second = std::min(min_attr->second, v); - max_attr->second = std::max(max_attr->second, v); + if (bbox_intersects(e.xmin, e.ymin, e.xmax, e.ymax, + a.xmin, a.ymin, a.xmax, a.ymax)) { + if (pnpoly_mp(bin.geometry, feature.geometry[0].x, feature.geometry[0].y)) { + tile_feature outfeature; + for (auto const &g : feature.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); } - } + outfeature.t = feature.type; + outfeature.has_id = feature.has_id; + outfeature.id = feature.id; + outfeature.tags = feature.tags; + outfeature.layer = &features.layers[e.layer]; + outfeature.seq = e.feature; + outfeatures[a.outfeature].push_back(std::move(outfeature)); - break; + break; + } } } } else /* EXIT */ { auto const &found = active.find({e.layer, e.feature}); if (found != active.end()) { - mvt_feature &outfeature = outlayer.features[found->outfeature]; - - if (counters[found->counter] >= 0) { - const mvt_feature &bin = bins[e.layer].features[e.feature]; - - // copy attributes from the original bin feature - for (size_t i = 0; i + 1 < bin.tags.size(); i += 2) { - outlayer.tag(outfeature, bins[e.layer].keys[bin.tags[i]], bins[e.layer].values[bin.tags[i + 1]]); - } - - // new attribute for number of features assigned to the bin - mvt_value v; - v.type = mvt_uint; - v.numeric_value.uint_value = counters[found->counter]; - outlayer.tag(outfeature, "tippecanoe:count", v); - - for (auto const &kv : sums[found->counter]) { - mvt_value v_sum; - v_sum.type = mvt_double; - v_sum.numeric_value.double_value = kv.second; - outlayer.tag(outfeature, "tippecanoe:sum:" + kv.first, v_sum); - - mvt_value v_count; - v_count.type = mvt_double; - v_count.numeric_value.double_value = counts[found->counter][kv.first]; - outlayer.tag(outfeature, "tippecanoe:count:" + kv.first, v_count); - - mvt_value v_mean; - v_mean.type = mvt_double; - v_mean.numeric_value.double_value = kv.second / counters[found->counter]; - outlayer.tag(outfeature, "tippecanoe:mean:" + kv.first, v_mean); - - mvt_value v_min; - v_min.type = mvt_double; - v_min.numeric_value.double_value = mins[found->counter][kv.first]; - outlayer.tag(outfeature, "tippecanoe:min:" + kv.first, v_min); - - mvt_value v_max; - v_max.type = mvt_double; - v_max.numeric_value.double_value = maxes[found->counter][kv.first]; - outlayer.tag(outfeature, "tippecanoe:max:" + kv.first, v_max); + if (outfeatures[found->outfeature].size() > 1) { + feature_out(outfeatures[found->outfeature], outlayer, + keep, exclude, exclude_prefix, attribute_accum, + tile_stringpool, accumulate_numeric); + mvt_feature &nfeature = outlayer.features.back(); + mvt_value val; + val.type = mvt_uint; + val.numeric_value.uint_value = outfeatures[found->outfeature].size() - 1; + + std::string attrname; + if (accumulate_numeric.size() == 0) { + attrname = "tippecanoe:count"; + } else { + attrname = accumulate_numeric + ":count"; } - } else { - outfeature.geometry.clear(); + outlayer.tag(nfeature, attrname, val); } active.erase(found); @@ -1462,29 +1602,23 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector const & } } -#if 0 - // crunch out bin features whose geometry we cleared along the way - size_t out = 0; - for (size_t i = 0; i < outlayer.features.size(); i++) { - if (outlayer.features[i].geometry.size() > 0) { - outlayer.features[out++] = outlayer.features[i]; - } - } - outlayer.features.resize(out); -#endif - mvt_tile ret; ret.layers.push_back(outlayer); return ret; } std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data, double simplification, - double tiny_polygon_size, std::vector const &bins) { + double tiny_polygon_size, std::vector const &bins, + std::string const &accumulate_numeric) { mvt_tile outtile; std::shared_ptr tile_stringpool = std::make_shared(); @@ -1610,7 +1744,7 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int if (flush_multiplier_cluster) { if (pending_tile_features.size() > 0) { - feature_out(pending_tile_features, *outlayer, keep, attribute_accum, tile_stringpool); + feature_out(pending_tile_features, *outlayer, keep, exclude, exclude_prefix, attribute_accum, tile_stringpool, accumulate_numeric); pending_tile_features.clear(); } } @@ -1667,7 +1801,7 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int } if (pending_tile_features.size() > 0) { - feature_out(pending_tile_features, *outlayer, keep, attribute_accum, tile_stringpool); + feature_out(pending_tile_features, *outlayer, keep, exclude, exclude_prefix, attribute_accum, tile_stringpool, accumulate_numeric); pending_tile_features.clear(); } @@ -1699,8 +1833,8 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int std::string child = overzoom(sts, nz + 1, nx * 2 + x, ny * 2 + y, - detail, buffer, keep, false, NULL, - demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins); + detail, buffer, keep, exclude, exclude_prefix, false, NULL, + demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins, accumulate_numeric); if (child.size() > 0) { next_overzoomed_tiles->emplace_back(nx * 2 + x, ny * 2 + y); } @@ -1710,7 +1844,8 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int } if (bins.size() > 0) { - outtile = assign_to_bins(outtile, bins, nz, nx, ny, detail); + outtile = assign_to_bins(outtile, bins, nz, nx, ny, detail, attribute_accum, accumulate_numeric, + keep, exclude, exclude_prefix); } for (ssize_t i = outtile.layers.size() - 1; i >= 0; i--) { diff --git a/geometry.cpp b/geometry.cpp index 321ad28c6..58d4f163d 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -18,7 +18,6 @@ #include "main.hpp" #include "options.hpp" #include "errors.hpp" -#include "projection.hpp" drawvec decode_geometry(const char **meta, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y) { drawvec out; diff --git a/geometry.hpp b/geometry.hpp index d82d1d6fb..79896af58 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -116,20 +116,30 @@ struct source_tile { }; std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data, double simplification, - double tiny_polygon_size, std::vector const &bins); + double tiny_polygon_size, std::vector const &bins, + std::string const &accumulate_numeric); std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data, double simplification, - double tiny_polygon_size, std::vector const &bins); + double tiny_polygon_size, std::vector const &bins, + std::string const &accumulate_numeric); draw center_of_mass_mp(const drawvec &dv); diff --git a/main.cpp b/main.cpp index 940480ab0..9a912dbdf 100644 --- a/main.cpp +++ b/main.cpp @@ -97,6 +97,7 @@ long long extend_zooms_max = 0; int retain_points_multiplier = 1; std::vector unidecode_data; size_t maximum_string_attribute_length = 0; +std::string accumulate_numeric; std::vector order_by; bool order_reverse; @@ -3084,7 +3085,7 @@ int main(int argc, char **argv) { {"attribute-type", required_argument, 0, 'T'}, {"attribute-description", required_argument, 0, 'Y'}, {"accumulate-attribute", required_argument, 0, 'E'}, - {"accumulate-numeric-attributes", no_argument, &additional[A_ACCUMULATE_NUMERIC], 1}, + {"accumulate-numeric-attributes", required_argument, 0, '~'}, {"empty-csv-columns-are-null", no_argument, &prevent[P_EMPTY_CSV_COLUMNS], 1}, {"convert-stringified-ids-to-numbers", no_argument, &additional[A_CONVERT_NUMERIC_IDS], 1}, {"use-attribute-for-id", required_argument, 0, '~'}, @@ -3327,6 +3328,8 @@ int main(int argc, char **argv) { unidecode_data = read_unidecode(optarg); } else if (strcmp(opt, "maximum-string-attribute-length") == 0) { maximum_string_attribute_length = atoll_require(optarg, "Maximum string attribute length"); + } else if (strcmp(opt, "accumulate-numeric-attributes") == 0) { + accumulate_numeric = optarg; } else { fprintf(stderr, "%s: Unrecognized option --%s\n", argv[0], opt); exit(EXIT_ARGS); diff --git a/main.hpp b/main.hpp index a25d04be4..b5844d914 100644 --- a/main.hpp +++ b/main.hpp @@ -64,6 +64,7 @@ extern std::map set_attributes; extern long long extend_zooms_max; extern int retain_points_multiplier; extern size_t maximum_string_attribute_length; +extern std::string accumulate_numeric; struct order_field { std::string name; diff --git a/options.hpp b/options.hpp index 5d7c15a70..ce50ef80a 100644 --- a/options.hpp +++ b/options.hpp @@ -12,7 +12,6 @@ #define A_PREFER_RADIX_SORT ((int) 'R') #define A_COALESCE_DENSEST_AS_NEEDED ((int) 'S') #define A_CALCULATE_INDEX ((int) 'X') -#define A_ACCUMULATE_NUMERIC ((int) 'a') #define A_DETECT_SHARED_BORDERS ((int) 'b') #define A_COALESCE ((int) 'c') #define A_DROP_FRACTION_AS_NEEDED ((int) 'd') diff --git a/overzoom.cpp b/overzoom.cpp index d3c2df470..7b8740703 100644 --- a/overzoom.cpp +++ b/overzoom.cpp @@ -22,8 +22,11 @@ bool preserve_input_order = false; std::unordered_map attribute_accum; std::vector unidecode_data; std::vector bins; +std::string accumulate_numeric; std::set keep; +std::set exclude; +std::vector exclude_prefix; void usage(char **argv) { fprintf(stderr, "Usage: %s -o newtile.pbf.gz tile.pbf.gz oz/ox/oy nz/nx/ny\n", argv[0]); @@ -45,6 +48,8 @@ int main(int argc, char **argv) { struct option long_options[] = { {"include", required_argument, 0, 'y'}, + {"exclude", required_argument, 0, 'x'}, + {"exclude-prefix", required_argument, 0, 'x' & 0x1F}, {"full-detail", required_argument, 0, 'd'}, {"buffer", required_argument, 0, 'b'}, {"output", required_argument, 0, 'o'}, @@ -57,6 +62,7 @@ int main(int argc, char **argv) { {"tiny-polygon-size", required_argument, 0, 's' & 0x1F}, {"source-tile", required_argument, 0, 't'}, {"assign-to-bins", required_argument, 0, 'b' & 0x1F}, + {"accumulate-numeric-attributes", required_argument, 0, 'a' & 0x1F}, {0, 0, 0, 0}, }; @@ -79,6 +85,14 @@ int main(int argc, char **argv) { keep.insert(optarg); break; + case 'x': + exclude.insert(optarg); + break; + + case 'x' & 0x1F: + exclude_prefix.push_back(optarg); + break; + case 'o': outfile = optarg; break; @@ -127,6 +141,10 @@ int main(int argc, char **argv) { assign_to_bins = optarg; break; + case 'a' & 0x1F: + accumulate_numeric = optarg; + break; + default: fprintf(stderr, "Unrecognized flag -%c\n", i); usage(argv); @@ -227,7 +245,7 @@ int main(int argc, char **argv) { its.push_back(std::move(t)); } - std::string out = overzoom(its, nz, nx, ny, detail, buffer, keep, true, NULL, demultiply, json_filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins); + std::string out = overzoom(its, nz, nx, ny, detail, buffer, keep, exclude, exclude_prefix, true, NULL, demultiply, json_filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins, accumulate_numeric); FILE *f = fopen(outfile, "wb"); if (f == NULL) { diff --git a/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json new file mode 100644 index 000000000..549b1087a --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json @@ -0,0 +1,1466 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "22.500000,53.746579,3", +"description": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles -z3 -b0 --accumulate-numeric-attributes numnum --set-attribute accum:1 --set-attribute accum2:1 --accumulate-attribute accum:sum --retain-points-multiplier 3 tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\",\"accum\":\"Number\",\"accum2\":\"Number\",\"numnum:count:ADM0CAP\":\"Number\",\"numnum:count:ADMIN1_COD\":\"Number\",\"numnum:count:CAPALT\":\"Number\",\"numnum:count:CHANGED\":\"Number\",\"numnum:count:CHECKME\":\"Number\",\"numnum:count:COMPARE\":\"Number\",\"numnum:count:DIFFASCII\":\"Number\",\"numnum:count:ELEVATION\":\"Number\",\"numnum:count:GEONAMEID\":\"Number\",\"numnum:count:GN_POP\":\"Number\",\"numnum:count:GTOPO30\":\"Number\",\"numnum:count:LABELRANK\":\"Number\",\"numnum:count:LATITUDE\":\"Number\",\"numnum:count:LONGITUDE\":\"Number\",\"numnum:count:LS_MATCH\":\"Number\",\"numnum:count:MAX_AREAKM\":\"Number\",\"numnum:count:MAX_AREAMI\":\"Number\",\"numnum:count:MAX_BBXMAX\":\"Number\",\"numnum:count:MAX_BBXMIN\":\"Number\",\"numnum:count:MAX_BBYMAX\":\"Number\",\"numnum:count:MAX_BBYMIN\":\"Number\",\"numnum:count:MAX_NATSCA\":\"Number\",\"numnum:count:MAX_PERKM\":\"Number\",\"numnum:count:MAX_PERMI\":\"Number\",\"numnum:count:MAX_POP10\":\"Number\",\"numnum:count:MAX_POP20\":\"Number\",\"numnum:count:MAX_POP300\":\"Number\",\"numnum:count:MAX_POP310\":\"Number\",\"numnum:count:MAX_POP50\":\"Number\",\"numnum:count:MEAN_BBXC\":\"Number\",\"numnum:count:MEAN_BBYC\":\"Number\",\"numnum:count:MEGACITY\":\"Number\",\"numnum:count:MIN_AREAKM\":\"Number\",\"numnum:count:MIN_AREAMI\":\"Number\",\"numnum:count:MIN_BBXMAX\":\"Number\",\"numnum:count:MIN_BBXMIN\":\"Number\",\"numnum:count:MIN_BBYMAX\":\"Number\",\"numnum:count:MIN_BBYMIN\":\"Number\",\"numnum:count:MIN_PERKM\":\"Number\",\"numnum:count:MIN_PERMI\":\"Number\",\"numnum:count:NAMEDIFF\":\"Number\",\"numnum:count:NATSCALE\":\"Number\",\"numnum:count:POP1950\":\"Number\",\"numnum:count:POP1955\":\"Number\",\"numnum:count:POP1960\":\"Number\",\"numnum:count:POP1965\":\"Number\",\"numnum:count:POP1970\":\"Number\",\"numnum:count:POP1975\":\"Number\",\"numnum:count:POP1980\":\"Number\",\"numnum:count:POP1985\":\"Number\",\"numnum:count:POP1990\":\"Number\",\"numnum:count:POP1995\":\"Number\",\"numnum:count:POP2000\":\"Number\",\"numnum:count:POP2005\":\"Number\",\"numnum:count:POP2010\":\"Number\",\"numnum:count:POP2015\":\"Number\",\"numnum:count:POP2020\":\"Number\",\"numnum:count:POP2025\":\"Number\",\"numnum:count:POP2050\":\"Number\",\"numnum:count:POP_MAX\":\"Number\",\"numnum:count:POP_MIN\":\"Number\",\"numnum:count:POP_OTHER\":\"Number\",\"numnum:count:RANK_MAX\":\"Number\",\"numnum:count:RANK_MIN\":\"Number\",\"numnum:count:SCALERANK\":\"Number\",\"numnum:count:UN_FID\":\"Number\",\"numnum:count:UN_LAT\":\"Number\",\"numnum:count:UN_LONG\":\"Number\",\"numnum:count:WORLDCITY\":\"Number\",\"numnum:count:accum2\":\"Number\",\"numnum:max:ADM0CAP\":\"Number\",\"numnum:max:ADMIN1_COD\":\"Number\",\"numnum:max:CAPALT\":\"Number\",\"numnum:max:CHANGED\":\"Number\",\"numnum:max:CHECKME\":\"Number\",\"numnum:max:COMPARE\":\"Number\",\"numnum:max:DIFFASCII\":\"Number\",\"numnum:max:ELEVATION\":\"Number\",\"numnum:max:GEONAMEID\":\"Number\",\"numnum:max:GN_POP\":\"Number\",\"numnum:max:GTOPO30\":\"Number\",\"numnum:max:LABELRANK\":\"Number\",\"numnum:max:LATITUDE\":\"Number\",\"numnum:max:LONGITUDE\":\"Number\",\"numnum:max:LS_MATCH\":\"Number\",\"numnum:max:MAX_AREAKM\":\"Number\",\"numnum:max:MAX_AREAMI\":\"Number\",\"numnum:max:MAX_BBXMAX\":\"Number\",\"numnum:max:MAX_BBXMIN\":\"Number\",\"numnum:max:MAX_BBYMAX\":\"Number\",\"numnum:max:MAX_BBYMIN\":\"Number\",\"numnum:max:MAX_NATSCA\":\"Number\",\"numnum:max:MAX_PERKM\":\"Number\",\"numnum:max:MAX_PERMI\":\"Number\",\"numnum:max:MAX_POP10\":\"Number\",\"numnum:max:MAX_POP20\":\"Number\",\"numnum:max:MAX_POP300\":\"Number\",\"numnum:max:MAX_POP310\":\"Number\",\"numnum:max:MAX_POP50\":\"Number\",\"numnum:max:MEAN_BBXC\":\"Number\",\"numnum:max:MEAN_BBYC\":\"Number\",\"numnum:max:MEGACITY\":\"Number\",\"numnum:max:MIN_AREAKM\":\"Number\",\"numnum:max:MIN_AREAMI\":\"Number\",\"numnum:max:MIN_BBXMAX\":\"Number\",\"numnum:max:MIN_BBXMIN\":\"Number\",\"numnum:max:MIN_BBYMAX\":\"Number\",\"numnum:max:MIN_BBYMIN\":\"Number\",\"numnum:max:MIN_PERKM\":\"Number\",\"numnum:max:MIN_PERMI\":\"Number\",\"numnum:max:NAMEDIFF\":\"Number\",\"numnum:max:NATSCALE\":\"Number\",\"numnum:max:POP1950\":\"Number\",\"numnum:max:POP1955\":\"Number\",\"numnum:max:POP1960\":\"Number\",\"numnum:max:POP1965\":\"Number\",\"numnum:max:POP1970\":\"Number\",\"numnum:max:POP1975\":\"Number\",\"numnum:max:POP1980\":\"Number\",\"numnum:max:POP1985\":\"Number\",\"numnum:max:POP1990\":\"Number\",\"numnum:max:POP1995\":\"Number\",\"numnum:max:POP2000\":\"Number\",\"numnum:max:POP2005\":\"Number\",\"numnum:max:POP2010\":\"Number\",\"numnum:max:POP2015\":\"Number\",\"numnum:max:POP2020\":\"Number\",\"numnum:max:POP2025\":\"Number\",\"numnum:max:POP2050\":\"Number\",\"numnum:max:POP_MAX\":\"Number\",\"numnum:max:POP_MIN\":\"Number\",\"numnum:max:POP_OTHER\":\"Number\",\"numnum:max:RANK_MAX\":\"Number\",\"numnum:max:RANK_MIN\":\"Number\",\"numnum:max:SCALERANK\":\"Number\",\"numnum:max:UN_FID\":\"Number\",\"numnum:max:UN_LAT\":\"Number\",\"numnum:max:UN_LONG\":\"Number\",\"numnum:max:WORLDCITY\":\"Number\",\"numnum:max:accum2\":\"Number\",\"numnum:min:ADM0CAP\":\"Number\",\"numnum:min:ADMIN1_COD\":\"Number\",\"numnum:min:CAPALT\":\"Number\",\"numnum:min:CHANGED\":\"Number\",\"numnum:min:CHECKME\":\"Number\",\"numnum:min:COMPARE\":\"Number\",\"numnum:min:DIFFASCII\":\"Number\",\"numnum:min:ELEVATION\":\"Number\",\"numnum:min:GEONAMEID\":\"Number\",\"numnum:min:GN_POP\":\"Number\",\"numnum:min:GTOPO30\":\"Number\",\"numnum:min:LABELRANK\":\"Number\",\"numnum:min:LATITUDE\":\"Number\",\"numnum:min:LONGITUDE\":\"Number\",\"numnum:min:LS_MATCH\":\"Number\",\"numnum:min:MAX_AREAKM\":\"Number\",\"numnum:min:MAX_AREAMI\":\"Number\",\"numnum:min:MAX_BBXMAX\":\"Number\",\"numnum:min:MAX_BBXMIN\":\"Number\",\"numnum:min:MAX_BBYMAX\":\"Number\",\"numnum:min:MAX_BBYMIN\":\"Number\",\"numnum:min:MAX_NATSCA\":\"Number\",\"numnum:min:MAX_PERKM\":\"Number\",\"numnum:min:MAX_PERMI\":\"Number\",\"numnum:min:MAX_POP10\":\"Number\",\"numnum:min:MAX_POP20\":\"Number\",\"numnum:min:MAX_POP300\":\"Number\",\"numnum:min:MAX_POP310\":\"Number\",\"numnum:min:MAX_POP50\":\"Number\",\"numnum:min:MEAN_BBXC\":\"Number\",\"numnum:min:MEAN_BBYC\":\"Number\",\"numnum:min:MEGACITY\":\"Number\",\"numnum:min:MIN_AREAKM\":\"Number\",\"numnum:min:MIN_AREAMI\":\"Number\",\"numnum:min:MIN_BBXMAX\":\"Number\",\"numnum:min:MIN_BBXMIN\":\"Number\",\"numnum:min:MIN_BBYMAX\":\"Number\",\"numnum:min:MIN_BBYMIN\":\"Number\",\"numnum:min:MIN_PERKM\":\"Number\",\"numnum:min:MIN_PERMI\":\"Number\",\"numnum:min:NAMEDIFF\":\"Number\",\"numnum:min:NATSCALE\":\"Number\",\"numnum:min:POP1950\":\"Number\",\"numnum:min:POP1955\":\"Number\",\"numnum:min:POP1960\":\"Number\",\"numnum:min:POP1965\":\"Number\",\"numnum:min:POP1970\":\"Number\",\"numnum:min:POP1975\":\"Number\",\"numnum:min:POP1980\":\"Number\",\"numnum:min:POP1985\":\"Number\",\"numnum:min:POP1990\":\"Number\",\"numnum:min:POP1995\":\"Number\",\"numnum:min:POP2000\":\"Number\",\"numnum:min:POP2005\":\"Number\",\"numnum:min:POP2010\":\"Number\",\"numnum:min:POP2015\":\"Number\",\"numnum:min:POP2020\":\"Number\",\"numnum:min:POP2025\":\"Number\",\"numnum:min:POP2050\":\"Number\",\"numnum:min:POP_MAX\":\"Number\",\"numnum:min:POP_MIN\":\"Number\",\"numnum:min:POP_OTHER\":\"Number\",\"numnum:min:RANK_MAX\":\"Number\",\"numnum:min:RANK_MIN\":\"Number\",\"numnum:min:SCALERANK\":\"Number\",\"numnum:min:UN_FID\":\"Number\",\"numnum:min:UN_LAT\":\"Number\",\"numnum:min:UN_LONG\":\"Number\",\"numnum:min:WORLDCITY\":\"Number\",\"numnum:min:accum2\":\"Number\",\"numnum:sum:ADM0CAP\":\"Number\",\"numnum:sum:ADMIN1_COD\":\"Number\",\"numnum:sum:CAPALT\":\"Number\",\"numnum:sum:CHANGED\":\"Number\",\"numnum:sum:CHECKME\":\"Number\",\"numnum:sum:COMPARE\":\"Number\",\"numnum:sum:DIFFASCII\":\"Number\",\"numnum:sum:ELEVATION\":\"Number\",\"numnum:sum:GEONAMEID\":\"Number\",\"numnum:sum:GN_POP\":\"Number\",\"numnum:sum:GTOPO30\":\"Number\",\"numnum:sum:LABELRANK\":\"Number\",\"numnum:sum:LATITUDE\":\"Number\",\"numnum:sum:LONGITUDE\":\"Number\",\"numnum:sum:LS_MATCH\":\"Number\",\"numnum:sum:MAX_AREAKM\":\"Number\",\"numnum:sum:MAX_AREAMI\":\"Number\",\"numnum:sum:MAX_BBXMAX\":\"Number\",\"numnum:sum:MAX_BBXMIN\":\"Number\",\"numnum:sum:MAX_BBYMAX\":\"Number\",\"numnum:sum:MAX_BBYMIN\":\"Number\",\"numnum:sum:MAX_NATSCA\":\"Number\",\"numnum:sum:MAX_PERKM\":\"Number\",\"numnum:sum:MAX_PERMI\":\"Number\",\"numnum:sum:MAX_POP10\":\"Number\",\"numnum:sum:MAX_POP20\":\"Number\",\"numnum:sum:MAX_POP300\":\"Number\",\"numnum:sum:MAX_POP310\":\"Number\",\"numnum:sum:MAX_POP50\":\"Number\",\"numnum:sum:MEAN_BBXC\":\"Number\",\"numnum:sum:MEAN_BBYC\":\"Number\",\"numnum:sum:MEGACITY\":\"Number\",\"numnum:sum:MIN_AREAKM\":\"Number\",\"numnum:sum:MIN_AREAMI\":\"Number\",\"numnum:sum:MIN_BBXMAX\":\"Number\",\"numnum:sum:MIN_BBXMIN\":\"Number\",\"numnum:sum:MIN_BBYMAX\":\"Number\",\"numnum:sum:MIN_BBYMIN\":\"Number\",\"numnum:sum:MIN_PERKM\":\"Number\",\"numnum:sum:MIN_PERMI\":\"Number\",\"numnum:sum:NAMEDIFF\":\"Number\",\"numnum:sum:NATSCALE\":\"Number\",\"numnum:sum:POP1950\":\"Number\",\"numnum:sum:POP1955\":\"Number\",\"numnum:sum:POP1960\":\"Number\",\"numnum:sum:POP1965\":\"Number\",\"numnum:sum:POP1970\":\"Number\",\"numnum:sum:POP1975\":\"Number\",\"numnum:sum:POP1980\":\"Number\",\"numnum:sum:POP1985\":\"Number\",\"numnum:sum:POP1990\":\"Number\",\"numnum:sum:POP1995\":\"Number\",\"numnum:sum:POP2000\":\"Number\",\"numnum:sum:POP2005\":\"Number\",\"numnum:sum:POP2010\":\"Number\",\"numnum:sum:POP2015\":\"Number\",\"numnum:sum:POP2020\":\"Number\",\"numnum:sum:POP2025\":\"Number\",\"numnum:sum:POP2050\":\"Number\",\"numnum:sum:POP_MAX\":\"Number\",\"numnum:sum:POP_MIN\":\"Number\",\"numnum:sum:POP_OTHER\":\"Number\",\"numnum:sum:RANK_MAX\":\"Number\",\"numnum:sum:RANK_MIN\":\"Number\",\"numnum:sum:SCALERANK\":\"Number\",\"numnum:sum:UN_FID\":\"Number\",\"numnum:sum:UN_LAT\":\"Number\",\"numnum:sum:UN_LONG\":\"Number\",\"numnum:sum:WORLDCITY\":\"Number\",\"numnum:sum:accum2\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":375,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"accum\",\"count\":7,\"type\":\"number\",\"values\":[1,2,3,4,5,6,7],\"min\":1,\"max\":7},{\"attribute\":\"accum2\",\"count\":1,\"type\":\"number\",\"values\":[1],\"min\":1,\"max\":1},{\"attribute\":\"numnum:count:ADM0CAP\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:ADMIN1_COD\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:CAPALT\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:CHANGED\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:CHECKME\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:COMPARE\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7},{\"attribute\":\"numnum:count:DIFFASCII\",\"count\":6,\"type\":\"number\",\"values\":[2.000000,3.000000,4.000000,5.000000,6.000000,7.000000],\"min\":2,\"max\":7}]}]}}", +"maxzoom": "3", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":195},{\"dropped_by_rate\":120},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"retain_points_multiplier\":3}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1910, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 17.252034, "numnum:sum:LATITUDE": 210.90497900000003, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -77.009419, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -556.388119, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 8990000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 24621548, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3647574, "numnum:min:POP_MIN": 13381, "numnum:sum:POP_MIN": 8081750, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3635101, "numnum:min:POP_OTHER": 15220, "numnum:sum:POP_OTHER": 12790026, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 62, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 3582672, "numnum:sum:GEONAMEID": 27663869, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3747798, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 14111559, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 5069998, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 17097802, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 8416660, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 22049661, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 8416660, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 23963556, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 8450289, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18039508, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 8323, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 16095, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 3213, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 6214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 4184, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 9497, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 2602, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 5899, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -77.533333, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -558.7249989999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -77.308333, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -557.861289, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -76.752653, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -554.752433, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -76.4, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -553.841666, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 17.233333, "numnum:sum:MIN_BBYMIN": 209.24999999999998, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 17.233333, "numnum:sum:MAX_BBYMIN": 209.420888, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 17.266667, "numnum:sum:MIN_BBYMAX": 212.35426900000003, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 17.266667, "numnum:sum:MAX_BBYMAX": 213.21666700000004, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -77.002668, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -556.3726459999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 17.248864, "numnum:sum:MEAN_BBYC": 210.980087, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 2841952, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 5668643, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 506, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 623, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2189, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 193.54000000000003, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -467.29, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8075, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9227, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10553, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6639, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 11965, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 13514, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7160, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 14352, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7216, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 15289, "numnum:count:POP1985": 6, "numnum:max:POP1985": 7285, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 16244, "numnum:count:POP1990": 6, "numnum:max:POP1990": 7374, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 17415, "numnum:count:POP1995": 6, "numnum:max:POP1995": 7839, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 19413, "numnum:count:POP2000": 6, "numnum:max:POP2000": 8333, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 21632, "numnum:count:POP2005": 6, "numnum:max:POP2005": 8820, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 23785, "numnum:count:POP2010": 6, "numnum:max:POP2010": 8990, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 24439, "numnum:count:POP2015": 6, "numnum:max:POP2015": 9211, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 25198, "numnum:count:POP2020": 6, "numnum:max:POP2020": 9516, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 26140, "numnum:count:POP2025": 6, "numnum:max:POP2025": 9756, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 26885, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9932, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 27465, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1230, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 174.318836, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -122.459978, "numnum:sum:LONGITUDE": -546.591094, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 227940, "numnum:sum:POP_MAX": 15143940, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1122874, "numnum:min:POP_MIN": 160966, "numnum:sum:POP_MIN": 4205873, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3225636, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7554778, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 64, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6094817, "numnum:min:GEONAMEID": 3571824, "numnum:sum:GEONAMEID": 26816335, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3296184, "numnum:min:MAX_POP10": 160966, "numnum:sum:MAX_POP10": 8875189, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3296184, "numnum:min:MAX_POP20": 160966, "numnum:sum:MAX_POP20": 9335017, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 160966, "numnum:sum:MAX_POP50": 13321453, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 5187749, "numnum:min:MAX_POP300": 160966, "numnum:sum:MAX_POP300": 16511865, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 5187749, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9749446, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 594, "numnum:min:MIN_AREAKM": 84, "numnum:sum:MIN_AREAKM": 2190, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 2907, "numnum:min:MAX_AREAKM": 84, "numnum:sum:MAX_AREAKM": 6256, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 229, "numnum:min:MIN_AREAMI": 32, "numnum:sum:MIN_AREAMI": 845, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1122, "numnum:min:MAX_AREAMI": 32, "numnum:sum:MAX_AREAMI": 2415, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 442, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 1272, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 999, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 2758, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 274, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 790, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 620, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 1713, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -122.516667, "numnum:sum:MIN_BBXMIN": -547.525, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -122.516667, "numnum:sum:MAX_BBXMIN": -547.5, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -122.358333, "numnum:sum:MIN_BBXMAX": -545.792385, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -121.733333, "numnum:sum:MAX_BBXMAX": -545.016666, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 172.97500000000003, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 173.541667, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 175.105727, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 176.308334, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -122.301354, "numnum:sum:MEAN_BBXC": -546.425829, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 174.458688, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 57, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1122874, "numnum:min:GN_POP": 227940, "numnum:sum:GN_POP": 4272847, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 16, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 18, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1533, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 2222, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1698, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 149.26999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -122.38, "numnum:sum:UN_LONG": -469.13, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1855, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3402, "numnum:count:POP1955": 6, "numnum:max:POP1955": 2021, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 4155, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2200, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5150, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2361, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 6087, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2529, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7178, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8160, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9248, "numnum:count:POP1985": 6, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10178, "numnum:count:POP1990": 6, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11245, "numnum:count:POP1995": 6, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12314, "numnum:count:POP2000": 6, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13435, "numnum:count:POP2005": 6, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 14507, "numnum:count:POP2010": 6, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14916, "numnum:count:POP2015": 6, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 15486, "numnum:count:POP2020": 6, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 16306, "numnum:count:POP2025": 6, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 16997, "numnum:count:POP2050": 6, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 17588, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 2710, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 43.69998, "numnum:min:LATITUDE": 14.102045, "numnum:sum:LATITUDE": 214.85557099999998, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -73.980017, "numnum:min:LONGITUDE": -118.179981, "numnum:sum:LONGITUDE": -645.276734, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 946000, "numnum:sum:POP_MAX": 61214000, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 850848, "numnum:sum:POP_MIN": 30838885, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 142265, "numnum:sum:POP_OTHER": 27668670, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 90, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 86, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 32769215, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 1014546, "numnum:sum:MAX_POP10": 33653301, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 1014546, "numnum:sum:MAX_POP20": 45299957, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 1014546, "numnum:sum:MAX_POP50": 63035776, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 1014546, "numnum:sum:MAX_POP300": 63037574, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 57966443, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1500, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1432, "numnum:min:MIN_AREAKM": 97, "numnum:sum:MIN_AREAKM": 6131, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 97, "numnum:sum:MAX_AREAKM": 20158, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 553, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 2367, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 7783, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 2428, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 10203, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 1510, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 6338, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": -74.75, "numnum:min:MIN_BBXMIN": -118.991667, "numnum:sum:MIN_BBXMIN": -648.158334, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": -74.091431, "numnum:min:MAX_BBXMIN": -118.966667, "numnum:sum:MAX_BBXMIN": -647.2729860000001, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": -73.574946, "numnum:min:MIN_BBXMAX": -117.857183, "numnum:sum:MIN_BBXMAX": -643.797233, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": -72.716667, "numnum:min:MAX_BBXMAX": -117.008333, "numnum:sum:MAX_BBXMAX": -641.1999989999999, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 43.141667, "numnum:min:MIN_BBYMIN": 14.033333, "numnum:sum:MIN_BBYMIN": 211.991667, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 43.475, "numnum:min:MAX_BBYMIN": 14.033333, "numnum:sum:MAX_BBYMIN": 213.646125, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 44.090162, "numnum:min:MIN_BBYMAX": 14.133333, "numnum:sum:MIN_BBYMAX": 216.30437999999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 44.125, "numnum:min:MAX_BBYMAX": 14.133333, "numnum:sum:MAX_BBYMAX": 217.64999899999999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": -73.815782, "numnum:min:MEAN_BBXC": -118.107478, "numnum:sum:MEAN_BBXC": -645.051549, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 43.712937, "numnum:min:MEAN_BBYC": 14.083298, "numnum:sum:MEAN_BBYC": 214.870293, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 30615615, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 99, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 3508, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 555, "numnum:min:UN_FID": 14, "numnum:sum:UN_FID": 2386, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 43.72, "numnum:min:UN_LAT": 14.09, "numnum:sum:UN_LAT": 214.54, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": -73.9, "numnum:min:UN_LONG": -118.25, "numnum:sum:UN_LONG": -645.36, "numnum:count:POP1950": 7, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 73, "numnum:sum:POP1950": 22029, "numnum:count:POP1955": 7, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 96, "numnum:sum:POP1955": 25565, "numnum:count:POP1960": 7, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 128, "numnum:sum:POP1960": 29823, "numnum:count:POP1965": 7, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 169, "numnum:sum:POP1965": 34021, "numnum:count:POP1970": 7, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 223, "numnum:sum:POP1970": 38929, "numnum:count:POP1975": 7, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 292, "numnum:sum:POP1975": 41604, "numnum:count:POP1980": 7, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 371, "numnum:sum:POP1980": 44771, "numnum:count:POP1985": 7, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 471, "numnum:sum:POP1985": 47385, "numnum:count:POP1990": 7, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 578, "numnum:sum:POP1990": 50302, "numnum:count:POP1995": 7, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 677, "numnum:sum:POP1995": 53897, "numnum:count:POP2000": 7, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 793, "numnum:sum:POP2000": 57267, "numnum:count:POP2005": 7, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 901, "numnum:sum:POP2005": 60140, "numnum:count:POP2010": 7, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 946, "numnum:sum:POP2010": 61214, "numnum:count:POP2015": 7, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 1022, "numnum:sum:POP2015": 62723, "numnum:count:POP2020": 7, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 1165, "numnum:sum:POP2020": 64828, "numnum:count:POP2025": 7, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 1317, "numnum:sum:POP2025": 66410, "numnum:count:POP2050": 7, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 1472, "numnum:sum:POP2050": 67538, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 320, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 13.710002, "numnum:sum:LATITUDE": 63.555029999999998, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -285.25609299999999, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1998000, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 3490850, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1234742, "numnum:min:POP_MIN": 2807, "numnum:sum:POP_MIN": 1263683, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2385397, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4546871, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 12012916, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2445384, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 4682228, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2445384, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 4682228, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2445384, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 4682228, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2445384, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 4682228, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 776, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 379, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 776, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 146, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 299, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 672, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 672, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 418, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 418, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -285.508334, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -285.508334, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -284.675, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -284.675, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 13.591667, "numnum:sum:MIN_BBYMIN": 63.350001, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 13.591667, "numnum:sum:MAX_BBYMIN": 63.350001, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 13.9, "numnum:sum:MIN_BBYMAX": 63.925000000000007, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 13.9, "numnum:sum:MAX_BBYMAX": 63.925000000000007, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -285.113232, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 13.738798, "numnum:sum:MEAN_BBYC": 63.620197999999998, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 30, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 44, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1234742, "numnum:min:GN_POP": 2807, "numnum:sum:GN_POP": 1256259, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 65, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 117, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 208, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 387, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 32.22, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -161.54000000000003, "numnum:count:POP1950": 4, "numnum:max:POP1950": 194, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 327, "numnum:count:POP1955": 4, "numnum:max:POP1955": 246, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 428, "numnum:count:POP1960": 4, "numnum:max:POP1960": 311, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 558, "numnum:count:POP1965": 4, "numnum:max:POP1965": 394, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 731, "numnum:count:POP1970": 4, "numnum:max:POP1970": 500, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 960, "numnum:count:POP1975": 4, "numnum:max:POP1975": 596, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1171, "numnum:count:POP1980": 4, "numnum:max:POP1980": 701, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1402, "numnum:count:POP1985": 4, "numnum:max:POP1985": 881, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1706, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1134, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2104, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1427, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2534, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1653, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2886, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1885, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3259, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1998, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3431, "numnum:count:POP2015": 4, "numnum:max:POP2015": 2209, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3729, "numnum:count:POP2020": 4, "numnum:max:POP2020": 2621, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4270, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3012, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4788, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3346, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5248, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.667338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 870, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 17.977077, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 50.027534, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -61.387013, "numnum:min:LONGITUDE": -86.268492, "numnum:sum:LONGITUDE": -298.506283, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 23336, "numnum:sum:POP_MAX": 9653036, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 16571, "numnum:sum:POP_MIN": 7935205, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 18171, "numnum:sum:POP_OTHER": 6883785, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 41, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3489854, "numnum:sum:GEONAMEID": 14371941, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 23336, "numnum:sum:MAX_POP10": 8127943, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 23336, "numnum:sum:MAX_POP20": 8127436, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 23336, "numnum:sum:MAX_POP50": 8127436, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 23336, "numnum:sum:MAX_POP300": 8127436, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 12, "numnum:sum:MIN_AREAKM": 786, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 12, "numnum:sum:MAX_AREAKM": 786, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 5, "numnum:sum:MIN_AREAMI": 304, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 5, "numnum:sum:MAX_AREAMI": 304, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 186, "numnum:min:MIN_PERKM": 25, "numnum:sum:MIN_PERKM": 377, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 186, "numnum:min:MAX_PERKM": 25, "numnum:sum:MAX_PERKM": 377, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 116, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 235, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 116, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 235, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -61.4, "numnum:min:MIN_BBXMIN": -86.383333, "numnum:sum:MIN_BBXMIN": -298.91666699999998, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -61.4, "numnum:min:MAX_BBXMIN": -86.383333, "numnum:sum:MAX_BBXMIN": -298.91666699999998, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -61.35, "numnum:min:MIN_BBXMAX": -86.158333, "numnum:sum:MIN_BBXMAX": -298.249999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -61.35, "numnum:min:MAX_BBXMAX": -86.158333, "numnum:sum:MAX_BBXMAX": -298.249999, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 17.958333, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 49.783333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 17.958333, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 49.783333, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 50.38333299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 50.38333299999999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -61.3775, "numnum:min:MEAN_BBXC": -86.263402, "numnum:sum:MEAN_BBXC": -298.555463, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 18.018509, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 50.093152, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 56, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 16571, "numnum:sum:GN_POP": 9029960, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -7266, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 382, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 543, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 12.15, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 16.78, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -86.27, "numnum:sum:UN_LONG": -160.35, "numnum:count:POP1950": 4, "numnum:max:POP1950": 630, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 740, "numnum:count:POP1955": 4, "numnum:max:POP1955": 894, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1042, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1468, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2049, "numnum:count:POP1970": 4, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2749, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3483, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4050, "numnum:count:POP1985": 4, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4708, "numnum:count:POP1990": 4, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5475, "numnum:count:POP1995": 4, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6359, "numnum:count:POP2000": 4, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7243, "numnum:count:POP2005": 4, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8262, "numnum:count:POP2010": 4, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8692, "numnum:count:POP2015": 4, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9264, "numnum:count:POP2020": 4, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9931, "numnum:count:POP2025": 4, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10403, "numnum:count:POP2050": 4, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10793, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 67.639418, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": -61.212062, "numnum:min:LONGITUDE": -84.084051, "numnum:sum:LONGITUDE": -356.579269, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 2154000, "numnum:min:POP_MAX": 35499, "numnum:sum:POP_MAX": 4803984, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 408168, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 461509, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 3322037, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5696443, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 3576022, "numnum:sum:GEONAMEID": 18977442, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 20, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 3334413, "numnum:min:MAX_POP10": 35499, "numnum:sum:MAX_POP10": 5828315, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 3334413, "numnum:min:MAX_POP20": 35499, "numnum:sum:MAX_POP20": 6203447, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 3334413, "numnum:min:MAX_POP50": 35499, "numnum:sum:MAX_POP50": 6234484, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 3334413, "numnum:min:MAX_POP300": 35499, "numnum:sum:MAX_POP300": 6234484, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 451, "numnum:min:MIN_AREAKM": 17, "numnum:sum:MIN_AREAKM": 898, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 451, "numnum:min:MAX_AREAKM": 17, "numnum:sum:MAX_AREAKM": 1081, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 174, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 347, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 174, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 418, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 612, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 755, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 380, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 469, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": -61.241667, "numnum:min:MIN_BBXMIN": -84.366667, "numnum:sum:MIN_BBXMIN": -357.26666700000006, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": -61.241667, "numnum:min:MAX_BBXMIN": -84.166667, "numnum:sum:MAX_BBXMIN": -357.051315, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": -61.158333, "numnum:min:MIN_BBXMAX": -83.983333, "numnum:sum:MIN_BBXMAX": -356.0916659999999, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": -61.158333, "numnum:min:MAX_BBXMAX": -83.975, "numnum:sum:MAX_BBXMAX": -356.0833329999999, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 67.308334, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 67.318753, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 68.050001, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 68.058334, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": -61.202183, "numnum:min:MEAN_BBXC": -84.111698, "numnum:sum:MEAN_BBXC": -356.613405, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 67.72877799999999, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 43, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 408168, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 438653, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 2004, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 3476, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 755, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 37.41, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -84.07, "numnum:sum:UN_LONG": -233.46999999999998, "numnum:count:POP1950": 5, "numnum:max:POP1950": 219, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 538, "numnum:count:POP1955": 5, "numnum:max:POP1955": 312, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 716, "numnum:count:POP1960": 5, "numnum:max:POP1960": 446, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 959, "numnum:count:POP1965": 5, "numnum:max:POP1965": 613, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1260, "numnum:count:POP1970": 5, "numnum:max:POP1970": 833, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1647, "numnum:count:POP1975": 5, "numnum:max:POP1975": 1016, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1984, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1240, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2379, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1396, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2744, "numnum:count:POP1990": 5, "numnum:max:POP1990": 1522, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3106, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1670, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3490, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1854, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3958, "numnum:count:POP2005": 5, "numnum:max:POP2005": 2062, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4495, "numnum:count:POP2010": 5, "numnum:max:POP2010": 2154, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4719, "numnum:count:POP2015": 5, "numnum:max:POP2015": 2298, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5051, "numnum:count:POP2020": 5, "numnum:max:POP2020": 2525, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5558, "numnum:count:POP2025": 5, "numnum:max:POP2025": 2722, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6002, "numnum:count:POP2050": 5, "numnum:max:POP2050": 2885, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6381, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1370, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 51.499995, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 166.596834, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -61.741643, "numnum:sum:LONGITUDE": -145.828954, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 17976047, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 27343, "numnum:sum:POP_MIN": 8901948, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3673427, "numnum:min:POP_OTHER": 27343, "numnum:sum:POP_OTHER": 6813327, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 66, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 17927212, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 14344393, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 14993294, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 16634267, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 16634267, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 13778690, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 3322, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 4609, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 1283, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 1779, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 2100, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 3553, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 1305, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 2208, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -61.758333, "numnum:sum:MIN_BBXMIN": -147.641667, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -61.758333, "numnum:sum:MAX_BBXMIN": -147.096866, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -61.725, "numnum:sum:MIN_BBXMAX": -144.808791, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -61.725, "numnum:sum:MAX_BBXMAX": -144.29166600000003, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 51.133333, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 165.858333, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 51.208333, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 165.933333, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 51.825, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 167.53333400000003, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 51.825, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 167.53333400000003, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -61.745833, "numnum:sum:MEAN_BBXC": -146.04652800000003, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 51.489624, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 166.663903, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 33, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 72, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 7500, "numnum:sum:GN_POP": 8882105, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -7493, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1402, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 51.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 130.64, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -12.979999999999999, "numnum:count:POP1950": 6, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 11365, "numnum:count:POP1955": 6, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 11701, "numnum:count:POP1960": 6, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 12102, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 12424, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 12847, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 13539, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 14362, "numnum:count:POP1985": 6, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 14540, "numnum:count:POP1990": 6, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 14605, "numnum:count:POP1995": 6, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 15209, "numnum:count:POP2000": 6, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 15942, "numnum:count:POP2005": 6, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16681, "numnum:count:POP2010": 6, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 16946, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 17261, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 17532, "numnum:count:POP2025": 6, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 17610, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 17639, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 930, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 50, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 53.333061, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 160.993175, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -6.248906, "numnum:min:LONGITUDE": -59.616527, "numnum:sum:LONGITUDE": -177.14009000000002, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 188084, "numnum:sum:POP_MAX": 6414925, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 96578, "numnum:sum:POP_MIN": 5997117, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 5557835, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 74, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 72, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3378644, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 18048510, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 176365, "numnum:sum:MAX_POP10": 6676545, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 176365, "numnum:sum:MAX_POP20": 6676188, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 176365, "numnum:sum:MAX_POP50": 6701920, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 6525555, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 968976, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 968976, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 850, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 428, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 1270, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 428, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 1315, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 165, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 489, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 165, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 507, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1214, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 1280, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 754, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 795, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": -6.533333, "numnum:min:MIN_BBXMIN": -59.641667, "numnum:sum:MIN_BBXMIN": -177.908333, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": -6.533333, "numnum:min:MAX_BBXMIN": -59.641667, "numnum:sum:MAX_BBXMIN": -177.908333, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": -6.041667, "numnum:min:MIN_BBXMAX": -59.5, "numnum:sum:MIN_BBXMAX": -176.3, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": -6.041667, "numnum:min:MAX_BBXMAX": -59.5, "numnum:sum:MAX_BBXMAX": -176.22500000000003, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 53.175, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 160.3, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 53.175, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 160.3, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 53.433333, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 161.59166599999998, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 53.433333, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 161.59166599999998, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": -6.278983, "numnum:min:MEAN_BBXC": -59.589731, "numnum:sum:MEAN_BBXC": -177.048532, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 53.329717, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 160.928676, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 88, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 5970280, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9697, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1124, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 102.03, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -30.53, "numnum:count:POP1950": 7, "numnum:max:POP1950": 626, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 982, "numnum:count:POP1955": 7, "numnum:max:POP1955": 647, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1066, "numnum:count:POP1960": 7, "numnum:max:POP1960": 661, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1253, "numnum:count:POP1965": 7, "numnum:max:POP1965": 723, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1535, "numnum:count:POP1970": 7, "numnum:max:POP1970": 771, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1875, "numnum:count:POP1975": 7, "numnum:max:POP1975": 833, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2256, "numnum:count:POP1980": 7, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2668, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3068, "numnum:count:POP1990": 7, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3495, "numnum:count:POP1995": 7, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4013, "numnum:count:POP2000": 7, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 4525, "numnum:count:POP2005": 7, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5118, "numnum:count:POP2010": 7, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5368, "numnum:count:POP2015": 7, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5747, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6390, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7066, "numnum:count:POP2050": 7, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7779, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 950, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 10.500999, "numnum:sum:LATITUDE": 173.392737, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -7.616367, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -207.76136100000003, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 6784104, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 5247173, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7733055, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 61, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 56, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 18976269, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 7207878, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 7740436, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 7740619, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7740619, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 436, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 891, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 436, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 1037, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 168, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 343, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 168, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 400, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 261, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 679, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 820, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 162, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 421, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 508, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -198.51666599999997, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -198.37638999999997, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -197.09999999999998, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -197.09999999999998, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 146.691667, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 146.77499999999999, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 147.550338, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 147.558334, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -197.798452, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 147.157541, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 45, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 115, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 5272104, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19040, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 954, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 33.6, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.09, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -74.52, "numnum:count:POP1950": 7, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1319, "numnum:count:POP1955": 7, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1733, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2283, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2863, "numnum:count:POP1970": 7, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3565, "numnum:count:POP1975": 7, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4135, "numnum:count:POP1980": 7, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4684, "numnum:count:POP1985": 7, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5099, "numnum:count:POP1990": 7, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5449, "numnum:count:POP1995": 7, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5767, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5907, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6068, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6166, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6365, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6781, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7198, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7568, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 9.531523, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -4.788608, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -5.275503, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -194.176302, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 1743119, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1494000, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 1712188, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1498020, "numnum:min:POP_OTHER": 42620, "numnum:sum:POP_OTHER": 1747139, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 2279755, "numnum:sum:GEONAMEID": 8734622, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1504217, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 1753336, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1504217, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 1753336, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1504217, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 1753336, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1504217, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1546837, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 184, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 258, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 184, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 258, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 71, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 100, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 71, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 100, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 123, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 202, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 123, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 202, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 76, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 125, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 76, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 125, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -5.308333, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -194.266666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -5.308333, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -194.266666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -5.216667, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -193.85833399999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -5.216667, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -193.85833399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 9.5, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -4.883334000000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 9.5, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -4.883334000000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 9.775, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -4.458333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 9.775, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -4.458333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -5.263708, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -194.05915299999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 9.633104, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -4.677638999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 87, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1767200, "numnum:min:GN_POP": 22400, "numnum:sum:GN_POP": 1984130, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 235, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9545, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 207, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 207, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 9.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.54, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -13.67, "numnum:sum:UN_LONG": -13.67, "numnum:count:POP1950": 3, "numnum:max:POP1950": 31, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 31, "numnum:count:POP1955": 3, "numnum:max:POP1955": 59, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 59, "numnum:count:POP1960": 3, "numnum:max:POP1960": 112, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 112, "numnum:count:POP1965": 3, "numnum:max:POP1965": 208, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 208, "numnum:count:POP1970": 3, "numnum:max:POP1970": 388, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 388, "numnum:count:POP1975": 3, "numnum:max:POP1975": 530, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 530, "numnum:count:POP1980": 3, "numnum:max:POP1980": 658, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 658, "numnum:count:POP1985": 3, "numnum:max:POP1985": 766, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 766, "numnum:count:POP1990": 3, "numnum:max:POP1990": 895, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 895, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1045, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1045, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1219, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1219, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1409, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1409, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1494, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1645, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1645, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1984, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1984, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2393, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2393, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2856, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2856, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 510, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 8.470011, "numnum:min:LATITUDE": 5.550035, "numnum:sum:LATITUDE": 20.330603, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -13.234216, "numnum:sum:LONGITUDE": -24.255684000000004, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2121000, "numnum:min:POP_MAX": 827000, "numnum:sum:POP_MAX": 3989000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1963264, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 2762694, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2334371, "numnum:min:POP_OTHER": 806416, "numnum:sum:POP_OTHER": 4215427, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2408770, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 6989769, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2359119, "numnum:min:MAX_POP10": 785662, "numnum:sum:MAX_POP10": 4219092, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2941045, "numnum:min:MAX_POP20": 781295, "numnum:sum:MAX_POP20": 4796651, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2941045, "numnum:min:MAX_POP50": 781295, "numnum:sum:MAX_POP50": 4796651, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2941045, "numnum:min:MAX_POP300": 781295, "numnum:sum:MAX_POP300": 4796651, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 443, "numnum:min:MIN_AREAKM": 77, "numnum:sum:MIN_AREAKM": 661, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 77, "numnum:sum:MAX_AREAKM": 865, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 171, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 255, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 334, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 244, "numnum:min:MIN_PERKM": 81, "numnum:sum:MIN_PERKM": 489, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 81, "numnum:sum:MAX_PERKM": 610, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 304, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 379, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -13.3, "numnum:sum:MIN_BBXMIN": -24.466667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -13.3, "numnum:sum:MAX_BBXMIN": -24.466667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -13.15, "numnum:sum:MIN_BBXMAX": -23.907058000000004, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -13.15, "numnum:sum:MAX_BBXMAX": -23.775000000000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 8.408333, "numnum:min:MIN_BBYMIN": 5.516667, "numnum:sum:MIN_BBYMIN": 20.15, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 8.408333, "numnum:min:MAX_BBYMIN": 5.516667, "numnum:sum:MAX_BBYMIN": 20.15, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 8.5, "numnum:min:MIN_BBYMAX": 5.775, "numnum:sum:MIN_BBYMAX": 20.675, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 8.5, "numnum:min:MAX_BBYMAX": 5.775, "numnum:sum:MAX_BBYMAX": 20.675, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -13.230082, "numnum:sum:MEAN_BBXC": -24.153897999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 8.462592, "numnum:min:MEAN_BBYC": 5.637403, "numnum:sum:MEAN_BBYC": 20.417824, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1963264, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 2916556, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 104, "numnum:min:GTOPO30": 15, "numnum:sum:GTOPO30": 149, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 449, "numnum:min:UN_FID": 196, "numnum:sum:UN_FID": 987, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 8.48, "numnum:min:UN_LAT": 5.55, "numnum:sum:UN_LAT": 20.330000000000003, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -0.2, "numnum:min:UN_LONG": -13.23, "numnum:sum:UN_LONG": -24.22, "numnum:count:POP1950": 3, "numnum:max:POP1950": 177, "numnum:min:POP1950": 15, "numnum:sum:POP1950": 284, "numnum:count:POP1955": 3, "numnum:max:POP1955": 265, "numnum:min:POP1955": 34, "numnum:sum:POP1955": 403, "numnum:count:POP1960": 3, "numnum:max:POP1960": 393, "numnum:min:POP1960": 75, "numnum:sum:POP1960": 587, "numnum:count:POP1965": 3, "numnum:max:POP1965": 499, "numnum:min:POP1965": 121, "numnum:sum:POP1965": 768, "numnum:count:POP1970": 3, "numnum:max:POP1970": 631, "numnum:min:POP1970": 164, "numnum:sum:POP1970": 1001, "numnum:count:POP1975": 3, "numnum:max:POP1975": 738, "numnum:min:POP1975": 226, "numnum:sum:POP1975": 1248, "numnum:count:POP1980": 3, "numnum:max:POP1980": 863, "numnum:min:POP1980": 325, "numnum:sum:POP1980": 1549, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1013, "numnum:min:POP1985": 460, "numnum:sum:POP1985": 1987, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1197, "numnum:min:POP1990": 529, "numnum:sum:POP1990": 2768, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1415, "numnum:min:POP1995": 464, "numnum:sum:POP1995": 2482, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1674, "numnum:min:POP2000": 688, "numnum:sum:POP2000": 3198, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1984, "numnum:min:POP2005": 785, "numnum:sum:POP2005": 3909, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2121, "numnum:min:POP2010": 827, "numnum:sum:POP2010": 3989, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2332, "numnum:min:POP2015": 894, "numnum:sum:POP2015": 4411, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2688, "numnum:min:POP2020": 1029, "numnum:sum:POP2020": 5174, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3041, "numnum:min:POP2025": 1200, "numnum:sum:POP2025": 5994, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3382, "numnum:min:POP2050": 1406, "numnum:sum:POP2050": 6871, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 530, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 12.650015, "numnum:min:LATITUDE": -13.841545, "numnum:sum:LATITUDE": 16.498783, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -171.738642, "numnum:sum:LONGITUDE": -185.303453, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 61916, "numnum:sum:POP_MAX": 6506916, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 37708, "numnum:sum:POP_MIN": 5360841, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5196918, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 44, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3689793, "numnum:min:GEONAMEID": 2293538, "numnum:sum:GEONAMEID": 10800975, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 61916, "numnum:sum:MAX_POP10": 5404332, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 61916, "numnum:sum:MAX_POP20": 5404332, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 61916, "numnum:sum:MAX_POP50": 5404332, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 61916, "numnum:sum:MAX_POP300": 5404332, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 39, "numnum:sum:MIN_AREAKM": 921, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 474, "numnum:min:MAX_AREAKM": 39, "numnum:sum:MAX_AREAKM": 921, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 355, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 183, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 355, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 51, "numnum:sum:MIN_PERKM": 594, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 304, "numnum:min:MAX_PERKM": 51, "numnum:sum:MAX_PERKM": 594, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 32, "numnum:sum:MIN_PERMI": 370, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 189, "numnum:min:MAX_PERMI": 32, "numnum:sum:MAX_PERMI": 370, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -171.825, "numnum:sum:MIN_BBXMIN": -185.691667, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -171.825, "numnum:sum:MAX_BBXMIN": -185.691667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -171.716667, "numnum:sum:MIN_BBXMAX": -184.925, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -171.716667, "numnum:sum:MAX_BBXMAX": -184.925, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 12.541667, "numnum:min:MIN_BBYMIN": -13.866667, "numnum:sum:MIN_BBYMIN": 16.191667000000004, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 12.541667, "numnum:min:MAX_BBYMIN": -13.866667, "numnum:sum:MAX_BBYMIN": 16.191667000000004, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 12.716667, "numnum:min:MIN_BBYMAX": -13.8, "numnum:sum:MIN_BBYMAX": 16.95, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 12.716667, "numnum:min:MAX_BBYMAX": -13.8, "numnum:sum:MAX_BBYMAX": 16.95, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -171.781117, "numnum:sum:MEAN_BBXC": -185.310128, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 12.626173, "numnum:min:MEAN_BBYC": -13.837855, "numnum:sum:MEAN_BBYC": 16.528193, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 160, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 6067841, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": 75, "numnum:sum:GTOPO30": 2293, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1237, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 30.450000000000004, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -7.98, "numnum:sum:UN_LONG": -13.67, "numnum:count:POP1950": 4, "numnum:max:POP1950": 89, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 187, "numnum:count:POP1955": 4, "numnum:max:POP1955": 125, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 282, "numnum:count:POP1960": 4, "numnum:max:POP1960": 192, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 381, "numnum:count:POP1965": 4, "numnum:max:POP1965": 310, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 550, "numnum:count:POP1970": 4, "numnum:max:POP1970": 548, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 881, "numnum:count:POP1975": 4, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1478, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2130, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2748, "numnum:count:POP1990": 4, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3385, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4112, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 4970, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5976, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6445, "numnum:count:POP2015": 4, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7207, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8616, "numnum:count:POP2025": 4, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10176, "numnum:count:POP2050": 4, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11877, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 33, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 52.080037, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": 24.908212999999998, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": -78.500051, "numnum:sum:LONGITUDE": -234.98215500000004, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 12795000, "numnum:min:POP_MAX": 107260, "numnum:sum:POP_MAX": 27982098, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 76684, "numnum:sum:POP_MIN": 15139280, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 10271457, "numnum:min:POP_OTHER": 106219, "numnum:sum:POP_OTHER": 14545028, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 2747373, "numnum:sum:GEONAMEID": 20151238, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 10929146, "numnum:min:MAX_POP10": 107260, "numnum:sum:MAX_POP10": 15448857, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 10991915, "numnum:min:MAX_POP20": 107260, "numnum:sum:MAX_POP20": 22040377, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 12611862, "numnum:min:MAX_POP50": 107260, "numnum:sum:MAX_POP50": 26035303, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 12611862, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 23615176, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 12611862, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21501154, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 2614, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 2447, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 5219, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 1009, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 945, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 2014, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 1326, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 1064, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 2981, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 824, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 661, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 1852, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": -78.591667, "numnum:sum:MIN_BBXMIN": -236.46666699999998, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": -78.591667, "numnum:sum:MAX_BBXMIN": -235.956913, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": -78.291667, "numnum:sum:MIN_BBXMAX": -234.216667, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": -78.291667, "numnum:sum:MAX_BBXMAX": -233.55085999999998, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 51.766667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": 23.824999999999997, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 51.958333, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": 24.10576300000001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 52.158333, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": 25.687103, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 52.158333, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": 25.958332000000007, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": -78.460061, "numnum:sum:MEAN_BBXC": -235.155194, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 52.021475, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": 24.875519999999996, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 61, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 76684, "numnum:sum:GN_POP": 21275627, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2764, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 5815, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 489, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 868, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -57.559999999999998, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -78.52, "numnum:sum:UN_LONG": -180.40999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8254, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9648, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 11291, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 13103, "numnum:count:POP1970": 6, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 15243, "numnum:count:POP1975": 6, "numnum:max:POP1975": 8745, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 16930, "numnum:count:POP1980": 6, "numnum:max:POP1980": 9422, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 18785, "numnum:count:POP1985": 6, "numnum:max:POP1985": 9959, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 19981, "numnum:count:POP1990": 6, "numnum:max:POP1990": 10513, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21196, "numnum:count:POP1995": 6, "numnum:max:POP1995": 11154, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22545, "numnum:count:POP2000": 6, "numnum:max:POP2000": 11847, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24007, "numnum:count:POP2005": 6, "numnum:max:POP2005": 12553, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 25615, "numnum:count:POP2010": 6, "numnum:max:POP2010": 12795, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 26244, "numnum:count:POP2015": 6, "numnum:max:POP2015": 13089, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 27106, "numnum:count:POP2020": 6, "numnum:max:POP2020": 13432, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 28242, "numnum:count:POP2025": 6, "numnum:max:POP2025": 13653, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 29021, "numnum:count:POP2050": 6, "numnum:max:POP2050": 13768, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 29497, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1650, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 38, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 59.35076, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": 47.031606, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 18.097335, "numnum:min:LONGITUDE": -77.050062, "numnum:sum:LONGITUDE": -237.58252200000008, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 20175998, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 9116449, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 12591465, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 82, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 62, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 22758903, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 15576835, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 18727161, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 20763223, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 20709417, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 3576473, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4913551, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1050, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 900, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 3363, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 2344, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 5752, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 347, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 1298, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 905, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 2221, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 2629, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 5199, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 1635, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 3232, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 17.775, "numnum:min:MIN_BBXMIN": -77.166667, "numnum:sum:MIN_BBXMIN": -239.25833400000006, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 17.775, "numnum:min:MAX_BBXMIN": -77.153161, "numnum:sum:MAX_BBXMIN": -238.677966, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 18.408333, "numnum:min:MIN_BBXMAX": -76.85, "numnum:sum:MIN_BBXMAX": -235.985665, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 18.408333, "numnum:min:MAX_BBXMAX": -76.833333, "numnum:sum:MAX_BBXMAX": -235.40833299999998, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 59.091667, "numnum:min:MIN_BBYMIN": -34.933333, "numnum:sum:MIN_BBYMIN": 45.73333300000001, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 59.091667, "numnum:min:MAX_BBYMIN": -34.933333, "numnum:sum:MAX_BBYMIN": 46.06205699999999, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 59.558333, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": 48.28333399999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 59.558333, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": 48.783333000000009, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 18.044982, "numnum:min:MEAN_BBXC": -77.010199, "numnum:sum:MEAN_BBXC": -237.41997, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 59.32868, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": 47.127359000000009, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 140, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 10080851, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 20, "numnum:sum:GTOPO30": 1633, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2267, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 59.33, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": 45.959999999999997, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 17.99, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -249.42999999999996, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1415, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6014, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6769, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7693, "numnum:count:POP1965": 7, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8890, "numnum:count:POP1970": 7, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 10144, "numnum:count:POP1975": 7, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 11516, "numnum:count:POP1980": 7, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 13029, "numnum:count:POP1985": 7, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 14405, "numnum:count:POP1990": 7, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 15808, "numnum:count:POP1995": 7, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 17225, "numnum:count:POP2000": 7, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 18398, "numnum:count:POP2005": 7, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 19623, "numnum:count:POP2010": 7, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 20122, "numnum:count:POP2015": 7, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 20817, "numnum:count:POP2020": 7, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 21776, "numnum:count:POP2025": 7, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22566, "numnum:count:POP2050": 7, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 23232, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 2120, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 59.91669, "numnum:min:LATITUDE": -33.047764, "numnum:sum:LATITUDE": 72.24559400000001, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 10.749979, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -216.31211700000004, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 835000, "numnum:sum:POP_MAX": 36775996, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 10021295, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 14745808, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 22237874, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 85, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 71, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 2759794, "numnum:sum:GEONAMEID": 27120588, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 25327315, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 637860, "numnum:sum:MAX_POP20": 31265334, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 637860, "numnum:sum:MAX_POP50": 34101550, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 33463690, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 29272112, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1250, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 3810, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 6548, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 1471, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 2528, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 33, "numnum:sum:MIN_PERKM": 2172, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 4300, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 21, "numnum:sum:MIN_PERMI": 1349, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 2672, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 10.333333, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -218.416666, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 10.440355, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -217.780509, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 11.091667, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -214.98274, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 11.091667, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -214.19166599999998, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 59.708333, "numnum:min:MIN_BBYMIN": -33.075, "numnum:sum:MIN_BBYMIN": 70.89999900000001, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 59.708333, "numnum:min:MAX_BBYMIN": -33.075, "numnum:sum:MAX_BBYMIN": 71.049335, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 60.066667, "numnum:min:MIN_BBYMAX": -33.016667, "numnum:sum:MIN_BBYMAX": 73.25, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 60.066667, "numnum:min:MAX_BBYMAX": -32.916667, "numnum:sum:MAX_BBYMAX": 73.49166600000001, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 10.756508, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -216.341691, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 59.906118, "numnum:min:MEAN_BBYC": -33.034648, "numnum:sum:MEAN_BBYC": 72.16938200000002, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 92, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 10021295, "numnum:min:GN_POP": 11177, "numnum:sum:GN_POP": 14390563, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": -2, "numnum:sum:GTOPO30": 6194, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 18, "numnum:sum:UN_FID": 2386, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 59.93, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": 112.94, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 10.71, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -258.33000000000006, "numnum:count:POP1950": 7, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 36, "numnum:sum:POP1950": 10858, "numnum:count:POP1955": 7, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 70, "numnum:sum:POP1955": 12065, "numnum:count:POP1960": 7, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 137, "numnum:sum:POP1960": 13862, "numnum:count:POP1965": 7, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 268, "numnum:sum:POP1965": 16275, "numnum:count:POP1970": 7, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 525, "numnum:sum:POP1970": 19197, "numnum:count:POP1975": 7, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 581, "numnum:sum:POP1975": 21905, "numnum:count:POP1980": 7, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 635, "numnum:sum:POP1980": 25079, "numnum:count:POP1985": 7, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 662, "numnum:sum:POP1985": 27091, "numnum:count:POP1990": 7, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 684, "numnum:sum:POP1990": 29384, "numnum:count:POP1995": 7, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 729, "numnum:sum:POP1995": 31470, "numnum:count:POP2000": 7, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 774, "numnum:sum:POP2000": 33509, "numnum:count:POP2005": 7, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 816, "numnum:sum:POP2005": 35730, "numnum:count:POP2010": 7, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 835, "numnum:sum:POP2010": 36658, "numnum:count:POP2015": 7, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 858, "numnum:sum:POP2015": 37952, "numnum:count:POP2020": 7, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 885, "numnum:sum:POP2020": 39570, "numnum:count:POP2025": 7, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 909, "numnum:sum:POP2025": 40588, "numnum:count:POP2050": 7, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 936, "numnum:sum:POP2050": 41227, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 920, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 43.91715, "numnum:sum:LATITUDE": 190.848992, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 16.366639, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 48.374886, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 29579, "numnum:sum:POP_MAX": 7075579, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 29000, "numnum:sum:POP_MIN": 5046399, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5002428, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 43, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 40, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3168070, "numnum:min:GEONAMEID": 2660646, "numnum:sum:GEONAMEID": 11540244, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 5214859, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 5263639, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 5644219, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5113797, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5113797, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 670, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 1508, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1763, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 582, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 680, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 482, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 1204, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 709, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 1484, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 300, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 749, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 441, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 923, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 16.133333, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 47.45, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 16.133333, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 47.685509999999997, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 16.583333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 49.375, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 16.583333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 49.375, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 43.9, "numnum:sum:MIN_BBYMIN": 190.225, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 43.9, "numnum:sum:MAX_BBYMIN": 190.316666, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 44, "numnum:sum:MIN_BBYMAX": 191.383333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 44, "numnum:sum:MAX_BBYMAX": 191.383333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 16.351672, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 48.374554, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 43.953472, "numnum:sum:MEAN_BBYC": 190.849027, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 29000, "numnum:sum:GN_POP": 5330803, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 171, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 245, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 951, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 321, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 513, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 100.71000000000001, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 16.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 29.64, "numnum:count:POP1950": 4, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 5438, "numnum:count:POP1955": 4, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5386, "numnum:count:POP1960": 4, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5349, "numnum:count:POP1965": 4, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5312, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5276, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5189, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5105, "numnum:count:POP1985": 4, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5129, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5518, "numnum:count:POP1995": 4, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5598, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5542, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5655, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5721, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5808, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5885, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5912, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5932, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 560, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 28, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 45.800007, "numnum:sum:LATITUDE": 200.645255, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 7.466975, "numnum:sum:LONGITUDE": 57.030456, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1707000, "numnum:min:POP_MAX": 275329, "numnum:sum:POP_MAX": 3789855, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1702139, "numnum:min:POP_MIN": 121631, "numnum:sum:POP_MIN": 3607736, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2012431, "numnum:min:POP_OTHER": 267814, "numnum:sum:POP_OTHER": 4009171, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 45, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3186886, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 9222998, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2129163, "numnum:min:MAX_POP10": 275329, "numnum:sum:MAX_POP10": 4251341, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2129163, "numnum:min:MAX_POP20": 275329, "numnum:sum:MAX_POP20": 4357025, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2129163, "numnum:min:MAX_POP50": 275329, "numnum:sum:MAX_POP50": 4383942, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2129163, "numnum:min:MAX_POP300": 275329, "numnum:sum:MAX_POP300": 4383942, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 802, "numnum:min:MIN_AREAKM": 78, "numnum:sum:MIN_AREAKM": 1562, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 802, "numnum:min:MAX_AREAKM": 78, "numnum:sum:MAX_AREAKM": 1701, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 310, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 603, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 310, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 657, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 1415, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 1609, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 999, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 7.375, "numnum:sum:MIN_BBXMIN": 55.983334, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 7.375, "numnum:sum:MAX_BBXMIN": 56.183334, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 57.741665999999998, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 57.741665999999998, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 45.683333, "numnum:sum:MIN_BBYMIN": 200.016666, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 45.683333, "numnum:sum:MAX_BBYMIN": 200.199999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 45.908333, "numnum:sum:MIN_BBYMAX": 201.311295, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 45.908333, "numnum:sum:MAX_BBYMAX": 201.391666, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 7.453227, "numnum:sum:MEAN_BBXC": 56.927279, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 45.803305, "numnum:sum:MEAN_BBYC": 200.708673, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 116, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1702139, "numnum:min:GN_POP": 121631, "numnum:sum:GN_POP": 3676351, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 527, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 756, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 593, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 107.95, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 33.55, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1984, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2169, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2403, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2585, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2680, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1444, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2616, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1565, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2661, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1596, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2652, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1628, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2663, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1652, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2700, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1666, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2743, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1693, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2778, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1707, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2792, "numnum:count:POP2015": 4, "numnum:max:POP2015": 1724, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2811, "numnum:count:POP2020": 4, "numnum:max:POP2020": 1735, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2827, "numnum:count:POP2025": 4, "numnum:max:POP2025": 1736, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2831, "numnum:count:POP2050": 4, "numnum:max:POP2050": 1736, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2832, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 300, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 50.083337, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 187.01199499999999, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 14.514969, "numnum:min:LONGITUDE": 7.406913, "numnum:sum:LONGITUDE": 45.904531, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1162000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 1549459, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 255115, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 298915, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 1088042, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 1479738, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 2993458, "numnum:sum:GEONAMEID": 13780240, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 1115771, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 1584563, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 1115771, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 1584563, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 1115771, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 1539121, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 1115771, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1430578, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 270, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 317, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 543, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 317, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 543, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 122, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 209, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 122, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 209, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 249, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 604, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 249, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 604, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 155, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 375, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 375, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 14.433333, "numnum:min:MIN_BBXMIN": 7.35, "numnum:sum:MIN_BBXMIN": 45.483332999999998, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 14.433333, "numnum:min:MAX_BBXMIN": 7.35, "numnum:sum:MAX_BBXMIN": 45.483332999999998, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 14.633333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 46.341666000000007, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 14.633333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 46.341666000000007, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 49.95, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 186.758334, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 49.95, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 186.758334, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 50.183333, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 187.458333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 50.183333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 187.458333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 14.541032, "numnum:min:MEAN_BBXC": 7.442529, "numnum:sum:MEAN_BBXC": 45.932852000000007, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 50.073451, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 187.08705400000003, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 61, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 72, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 255115, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 263419, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 308, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8698, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 173, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 173, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 50.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.1, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 14.45, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 14.45, "numnum:count:POP1950": 4, "numnum:max:POP1950": 935, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 935, "numnum:count:POP1955": 4, "numnum:max:POP1955": 967, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 967, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1001, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1001, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1038, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1038, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1076, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1076, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1126, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1126, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1179, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1179, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1197, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1197, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1212, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1212, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1194, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1194, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1172, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1172, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1164, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1164, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1162, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1162, "numnum:count:POP2015": 4, "numnum:max:POP2015": 1160, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1160, "numnum:count:POP2020": 4, "numnum:max:POP2020": 1159, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1159, "numnum:count:POP2025": 4, "numnum:max:POP2025": 1159, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1159, "numnum:count:POP2050": 4, "numnum:max:POP2050": 1159, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1159, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 24, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 530, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 39, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 59.433877, "numnum:min:LATITUDE": 41.900012, "numnum:sum:LATITUDE": 284.799921, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 27.566627, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 131.27471400000003, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1942000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 4752892, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 3994878, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4336655, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 54, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 12568648, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 4707332, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 4707332, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 4070570, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 4070570, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 520, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 345, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 945, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 345, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 945, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 365, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 133, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 365, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 357, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 990, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 357, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 990, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 222, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 615, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 222, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 615, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 27.408333, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 130.475, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 27.408333, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 130.475, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 27.716667, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 131.889343, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 27.716667, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 131.889343, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 59.333333, "numnum:min:MIN_BBYMIN": 41.766667, "numnum:sum:MIN_BBYMIN": 284.25, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 59.333333, "numnum:min:MAX_BBYMIN": 41.766667, "numnum:sum:MAX_BBYMIN": 284.25, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 59.525, "numnum:min:MIN_BBYMAX": 42.05, "numnum:sum:MIN_BBYMAX": 285.40833299999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 59.525, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 285.40833299999999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 27.562159, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 131.22058199999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 59.42709, "numnum:min:MEAN_BBYC": 41.903477, "numnum:sum:MEAN_BBYC": 284.776179, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1877155, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 4700602, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 1035, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 422, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 426, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 53.89, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 98.32, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 27.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 53.69, "numnum:count:POP1950": 6, "numnum:max:POP1950": 652, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 936, "numnum:count:POP1955": 6, "numnum:max:POP1955": 856, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1270, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1002, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1553, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1154, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1873, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1396, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2328, "numnum:count:POP1975": 6, "numnum:max:POP1975": 1702, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2822, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1865, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3183, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1950, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3424, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2040, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3647, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2018, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3667, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1949, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3649, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1936, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3711, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1942, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3747, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1947, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3793, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1949, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3828, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1949, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3832, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1949, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3832, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1240, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 41, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 284.615797, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 25.316635, "numnum:min:LONGITUDE": 12.483258, "numnum:sum:LONGITUDE": 124.25255800000001, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 542366, "numnum:sum:POP_MAX": 7773447, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 874827, "numnum:min:POP_MIN": 35452, "numnum:sum:POP_MIN": 3025953, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 494356, "numnum:sum:POP_OTHER": 5324118, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 69, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 61, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 4219762, "numnum:min:GEONAMEID": 593116, "numnum:sum:GEONAMEID": 12573270, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 507029, "numnum:sum:MAX_POP10": 5537132, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 507029, "numnum:sum:MAX_POP20": 5537132, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 507029, "numnum:sum:MAX_POP50": 6059560, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 507029, "numnum:sum:MAX_POP300": 6059560, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 74, "numnum:sum:MIN_AREAKM": 1539, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 74, "numnum:sum:MAX_AREAKM": 1717, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 594, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 663, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 80, "numnum:sum:MIN_PERKM": 1460, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 80, "numnum:sum:MAX_PERKM": 1578, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 909, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 982, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 25.166667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 123.216666, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 25.166667, "numnum:min:MAX_BBXMIN": 12.450494, "numnum:sum:MAX_BBXMIN": 123.333827, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 25.391667, "numnum:min:MIN_BBXMAX": 12.766667, "numnum:sum:MIN_BBXMAX": 125.141668, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 25.391667, "numnum:min:MAX_BBXMAX": 12.766667, "numnum:sum:MAX_BBXMAX": 125.141668, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 283.991667, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 283.991667, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 285.34166600000006, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 285.358333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 25.259623, "numnum:min:MEAN_BBXC": 12.561474, "numnum:sum:MEAN_BBXC": 124.216286, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 284.67928099999997, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 171, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1152556, "numnum:min:GN_POP": 35452, "numnum:sum:GN_POP": 3360363, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 23, "numnum:sum:GTOPO30": 1537, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 491, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 144.76, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 60.809999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2772, "numnum:count:POP1955": 6, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3164, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3612, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4064, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4530, "numnum:count:POP1975": 6, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4859, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5138, "numnum:count:POP1985": 6, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5334, "numnum:count:POP1990": 6, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5513, "numnum:count:POP1995": 6, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5536, "numnum:count:POP2000": 6, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5532, "numnum:count:POP2005": 6, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5608, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5639, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5684, "numnum:count:POP2020": 6, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5732, "numnum:count:POP2025": 6, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5761, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5786, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavský", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 42, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 289.852066, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 17.116981, "numnum:sum:LONGITUDE": 132.718347, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 423737, "numnum:sum:POP_MAX": 7147396, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 373687, "numnum:sum:POP_MIN": 5994117, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1718895, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5455507, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3060972, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 8853757, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1788020, "numnum:min:MAX_POP10": 373687, "numnum:sum:MAX_POP10": 6314948, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1788020, "numnum:min:MAX_POP20": 373687, "numnum:sum:MAX_POP20": 6314948, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1788020, "numnum:min:MAX_POP50": 373687, "numnum:sum:MAX_POP50": 6314948, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1788020, "numnum:min:MAX_POP300": 373687, "numnum:sum:MAX_POP300": 6314948, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 113, "numnum:sum:MIN_AREAKM": 1380, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 556, "numnum:min:MAX_AREAKM": 113, "numnum:sum:MAX_AREAKM": 1380, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 533, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 215, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 533, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 98, "numnum:sum:MIN_PERKM": 1156, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 460, "numnum:min:MAX_PERKM": 98, "numnum:sum:MAX_PERKM": 1156, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 61, "numnum:sum:MIN_PERMI": 719, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 286, "numnum:min:MAX_PERMI": 61, "numnum:sum:MAX_PERMI": 719, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 17.016667, "numnum:sum:MIN_BBXMIN": 131.783334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 17.016667, "numnum:sum:MAX_BBXMIN": 131.783334, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 17.233333, "numnum:sum:MIN_BBXMAX": 133.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 17.233333, "numnum:sum:MAX_BBXMAX": 133.6, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 289.325001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 289.325001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 290.475, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 290.475, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 17.131335, "numnum:sum:MEAN_BBXC": 132.69818800000003, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 289.84445, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 44, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 423737, "numnum:sum:GN_POP": 7125204, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 246, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 746, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1170, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 50.44, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 142.74, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 70, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2844, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1714, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3189, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1811, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3550, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1878, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3916, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4330, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2005, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4804, "numnum:count:POP1980": 6, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5315, "numnum:count:POP1985": 6, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5567, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5741, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5632, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5520, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5471, "numnum:count:POP2010": 6, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5487, "numnum:count:POP2015": 6, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5508, "numnum:count:POP2020": 6, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5533, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5559, "numnum:count:POP2050": 6, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5590, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 490, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 47.005024, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 104.14122100000002, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 28.857711, "numnum:min:LONGITUDE": 2.116656, "numnum:sum:LONGITUDE": 50.503995999999997, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 2412500, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 4403853, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 742791, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 2397572, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1675117, "numnum:min:POP_OTHER": 88219, "numnum:sum:POP_OTHER": 3950078, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 52, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 51, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 618426, "numnum:sum:GEONAMEID": 11303560, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1831176, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 3867773, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1831176, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 3808090, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1838972, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 3815886, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1838972, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3358116, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 480, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 1021, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 1084, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 185, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 393, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 418, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 485, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 967, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 524, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 1067, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 302, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 603, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 326, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 665, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 28.741667, "numnum:min:MIN_BBXMIN": 2.033333, "numnum:sum:MIN_BBXMIN": 49.974999999999997, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 28.741667, "numnum:min:MAX_BBXMIN": 2.033333, "numnum:sum:MAX_BBXMIN": 49.974999999999997, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 28.925, "numnum:min:MIN_BBXMAX": 2.216667, "numnum:sum:MIN_BBXMAX": 51.272585, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 28.925, "numnum:min:MAX_BBXMAX": 2.216667, "numnum:sum:MAX_BBXMAX": 51.35, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 46.95, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 103.80000000000001, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 46.95, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 103.80000000000001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 47.075, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 104.683334, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 47.075, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 104.766667, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 28.840203, "numnum:min:MEAN_BBXC": 2.125595, "numnum:sum:MEAN_BBXC": 50.59489599999999, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 47.017185, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 104.201588, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 141, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 2343744, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 458, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 385, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 385, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 13.51, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.12, "numnum:count:POP1950": 5, "numnum:max:POP1950": 24, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 24, "numnum:count:POP1955": 5, "numnum:max:POP1955": 37, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 37, "numnum:count:POP1960": 5, "numnum:max:POP1960": 58, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 58, "numnum:count:POP1965": 5, "numnum:max:POP1965": 85, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 85, "numnum:count:POP1970": 5, "numnum:max:POP1970": 129, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 129, "numnum:count:POP1975": 5, "numnum:max:POP1975": 198, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 198, "numnum:count:POP1980": 5, "numnum:max:POP1980": 274, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 274, "numnum:count:POP1985": 5, "numnum:max:POP1985": 344, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 344, "numnum:count:POP1990": 5, "numnum:max:POP1990": 432, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 432, "numnum:count:POP1995": 5, "numnum:max:POP1995": 542, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 542, "numnum:count:POP2000": 5, "numnum:max:POP2000": 680, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 680, "numnum:count:POP2005": 5, "numnum:max:POP2005": 846, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 846, "numnum:count:POP2010": 5, "numnum:max:POP2010": 915, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 915, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1027, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1027, "numnum:count:POP2020": 5, "numnum:max:POP2020": 1258, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1258, "numnum:count:POP2025": 5, "numnum:max:POP2025": 1580, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1580, "numnum:count:POP2050": 5, "numnum:max:POP2050": 2028, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2028, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1130, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 41.104996, "numnum:min:LATITUDE": 6.400009, "numnum:sum:LATITUDE": 129.251135, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 29.010002, "numnum:min:LONGITUDE": 2.519991, "numnum:sum:LONGITUDE": 56.628584999999997, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 10061000, "numnum:min:POP_MAX": 368250, "numnum:sum:POP_MAX": 16121250, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 9945610, "numnum:min:POP_MIN": 6966, "numnum:sum:POP_MIN": 12782958, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 9651488, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 14380921, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 59, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 50, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": 745044, "numnum:sum:GEONAMEID": 10532442, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 9945610, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 15349037, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 9945243, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 15712366, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 10140950, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 16412853, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 10140950, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 15794613, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 10140950, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10140950, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1249, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 2607, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 1327, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 3219, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 482, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 1006, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 512, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 1242, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 852, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 2076, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 2708, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 529, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 1290, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 1683, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 28.2, "numnum:min:MIN_BBXMIN": 2.2, "numnum:sum:MIN_BBXMIN": 54.825, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 28.257268, "numnum:min:MAX_BBXMIN": 2.296132, "numnum:sum:MAX_BBXMIN": 55.145066, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 29.45, "numnum:min:MIN_BBXMAX": 2.632958, "numnum:sum:MIN_BBXMAX": 57.772836, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 29.558333, "numnum:min:MAX_BBXMAX": 2.858333, "numnum:sum:MAX_BBXMAX": 58.30000000000001, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 40.75, "numnum:min:MIN_BBYMIN": 6.341667, "numnum:sum:MIN_BBYMIN": 128.341667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 40.75, "numnum:min:MAX_BBYMIN": 6.341667, "numnum:sum:MAX_BBYMIN": 128.39999999999999, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 41.258333, "numnum:min:MIN_BBYMAX": 6.583333, "numnum:sum:MIN_BBYMAX": 129.766667, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 41.258333, "numnum:min:MAX_BBYMAX": 6.641667, "numnum:sum:MAX_BBYMAX": 129.82500100000002, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 29.008987, "numnum:min:MEAN_BBXC": 2.392241, "numnum:sum:MEAN_BBXC": 56.470318000000009, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 41.004964, "numnum:min:MEAN_BBYC": 6.416506, "numnum:sum:MEAN_BBYC": 129.039971, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 49, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 6794, "numnum:sum:GN_POP": 14011433, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 511, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1070, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 41.06, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 93.24, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 29, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 41.73, "numnum:count:POP1950": 5, "numnum:max:POP1950": 967, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1521, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1249, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1920, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1453, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2421, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2001, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3190, "numnum:count:POP1970": 5, "numnum:max:POP1970": 2772, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4237, "numnum:count:POP1975": 5, "numnum:max:POP1975": 3600, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5416, "numnum:count:POP1980": 5, "numnum:max:POP1980": 4397, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6480, "numnum:count:POP1985": 5, "numnum:max:POP1985": 5407, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7695, "numnum:count:POP1990": 5, "numnum:max:POP1990": 6552, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9294, "numnum:count:POP1995": 5, "numnum:max:POP1995": 7665, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11063, "numnum:count:POP2000": 5, "numnum:max:POP2000": 8744, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 12972, "numnum:count:POP2005": 5, "numnum:max:POP2005": 9709, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 14943, "numnum:count:POP2010": 5, "numnum:max:POP2010": 10061, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 15753, "numnum:count:POP2015": 5, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16939, "numnum:count:POP2020": 5, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 18661, "numnum:count:POP2025": 5, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 20097, "numnum:count:POP2050": 5, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 21370, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1620, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 27, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 142.94487299999998, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 100.200618, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 24659000, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 12437891, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 20537152, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 63, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 50, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2365267, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 4237381, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 954448, "numnum:sum:MAX_POP10": 21310016, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 953569, "numnum:sum:MAX_POP20": 21268830, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 954013, "numnum:sum:MAX_POP50": 22094194, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 953569, "numnum:sum:MAX_POP300": 22136101, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 11547877, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 3138, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 3665, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 1213, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 1414, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 2136, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 2652, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 1328, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1648, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 98.800411, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 98.871331, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 101.3754, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 101.59999899999998, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 142.19166700000003, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 142.393695, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 143.892536, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 144.058333, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 100.081159, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 143.07900399999998, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1049498, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2030132, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 604, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 191, "numnum:sum:UN_FID": 1850, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 6.1, "numnum:sum:UN_LAT": 144.35, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 1.2, "numnum:sum:UN_LONG": 122.98, "numnum:count:POP1950": 5, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 33, "numnum:sum:POP1950": 6412, "numnum:count:POP1955": 5, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 56, "numnum:sum:POP1955": 7068, "numnum:count:POP1960": 5, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 95, "numnum:sum:POP1960": 7919, "numnum:count:POP1965": 5, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 138, "numnum:sum:POP1965": 8933, "numnum:count:POP1970": 5, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 192, "numnum:sum:POP1970": 10007, "numnum:count:POP1975": 5, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 257, "numnum:sum:POP1975": 11373, "numnum:count:POP1980": 5, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 344, "numnum:sum:POP1980": 12939, "numnum:count:POP1985": 5, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 466, "numnum:sum:POP1985": 14779, "numnum:count:POP1990": 5, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 619, "numnum:sum:POP1990": 17094, "numnum:count:POP1995": 5, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 796, "numnum:sum:POP1995": 18801, "numnum:count:POP2000": 5, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 1023, "numnum:sum:POP2000": 21249, "numnum:count:POP2005": 5, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 1093, "numnum:sum:POP2005": 23689, "numnum:count:POP2010": 5, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 1100, "numnum:sum:POP2010": 24659, "numnum:count:POP2015": 5, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 1108, "numnum:sum:POP2015": 26166, "numnum:count:POP2020": 5, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 1113, "numnum:sum:POP2020": 28610, "numnum:count:POP2025": 5, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 1114, "numnum:sum:POP2025": 30897, "numnum:count:POP2050": 5, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 1114, "numnum:sum:POP2050": 33082, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.727110 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1320, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 37.983326, "numnum:min:LATITUDE": 3.750015, "numnum:sum:LATITUDE": 137.06174299999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 36.299996, "numnum:min:LONGITUDE": 8.783278, "numnum:sum:LONGITUDE": 135.273189, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 155963, "numnum:sum:POP_MAX": 18786263, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 155963, "numnum:sum:POP_MIN": 11886714, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 18250273, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 59, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 56, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 2309527, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 3386366, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 314, "numnum:sum:MAX_POP10": 21761702, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 314, "numnum:sum:MAX_POP20": 23041352, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 314, "numnum:sum:MAX_POP50": 37822618, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 314, "numnum:sum:MAX_POP300": 38631988, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 2598, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 6361, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 1002, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 2455, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 2415, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 6317, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 1501, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 3925, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 36.05, "numnum:min:MIN_BBXMIN": 8.658333, "numnum:sum:MIN_BBXMIN": 133.933333, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 36.05, "numnum:min:MAX_BBXMIN": 8.658333, "numnum:sum:MAX_BBXMIN": 134.391693, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 36.474923, "numnum:min:MIN_BBXMAX": 8.666667, "numnum:sum:MIN_BBXMAX": 136.04702, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 36.55, "numnum:min:MAX_BBXMAX": 8.666667, "numnum:sum:MAX_BBXMAX": 136.183334, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 37.9, "numnum:min:MIN_BBYMIN": 3.35, "numnum:sum:MIN_BBYMIN": 135.516666, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 37.908333, "numnum:min:MAX_BBYMIN": 3.35, "numnum:sum:MAX_BBYMIN": 136.024999, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 38.158333, "numnum:min:MIN_BBYMAX": 3.358333, "numnum:sum:MIN_BBYMAX": 137.651398, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 38.158333, "numnum:min:MAX_BBYMAX": 3.358333, "numnum:sum:MAX_BBYMAX": 138.291666, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 36.275119, "numnum:min:MEAN_BBXC": 8.6625, "numnum:sum:MEAN_BBXC": 135.16362900000002, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 38.032045, "numnum:min:MEAN_BBYC": 3.354167, "numnum:sum:MEAN_BBYC": 137.024004, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 9333714, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 70, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 70, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 795, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 1039, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1206, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 37.94, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 101.5, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 36.29, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 91.19, "numnum:count:POP1950": 5, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4208, "numnum:count:POP1955": 5, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5053, "numnum:count:POP1960": 5, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 6073, "numnum:count:POP1965": 5, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7586, "numnum:count:POP1970": 5, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8984, "numnum:count:POP1975": 5, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 10310, "numnum:count:POP1980": 5, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 11712, "numnum:count:POP1985": 5, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 12921, "numnum:count:POP1990": 5, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 13822, "numnum:count:POP1995": 5, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 14678, "numnum:count:POP2000": 5, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 15757, "numnum:count:POP2005": 5, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 17047, "numnum:count:POP2010": 5, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17601, "numnum:count:POP2015": 5, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 18434, "numnum:count:POP2020": 5, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 19724, "numnum:count:POP2025": 5, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 21044, "numnum:count:POP2050": 5, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 22492, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 940, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 32, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 35.166676, "numnum:min:LATITUDE": 0.385389, "numnum:sum:LATITUDE": 122.71741, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 44.393869, "numnum:min:LONGITUDE": 9.457965, "numnum:sum:LONGITUDE": 173.820644, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 13288381, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 10047350, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 222985, "numnum:sum:POP_OTHER": 10436226, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 69, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 68, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2399697, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 5690033, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 10906000, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 10906343, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 10973606, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 13120994, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 1690, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 630, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 2027, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 653, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 243, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 783, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 403, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 1303, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 457, "numnum:min:MAX_PERKM": 98, "numnum:sum:MAX_PERKM": 1560, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 251, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 811, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 284, "numnum:min:MAX_PERMI": 61, "numnum:sum:MAX_PERMI": 970, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 44.241667, "numnum:min:MIN_BBXMIN": 9.4, "numnum:sum:MIN_BBXMIN": 173.191668, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 44.241667, "numnum:min:MAX_BBXMIN": 9.4, "numnum:sum:MAX_BBXMIN": 173.308334, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 44.575, "numnum:min:MIN_BBXMAX": 9.525, "numnum:sum:MIN_BBXMAX": 174.549859, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 44.575, "numnum:min:MAX_BBXMAX": 9.525, "numnum:sum:MAX_BBXMAX": 174.6, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 35.041667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 121.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 35.041667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 121.808334, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 35.225, "numnum:min:MIN_BBYMAX": 0.483333, "numnum:sum:MIN_BBYMAX": 123.63275499999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 35.225, "numnum:min:MAX_BBYMAX": 0.483333, "numnum:sum:MAX_BBYMAX": 123.758333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 44.401776, "numnum:min:MEAN_BBXC": 9.47328, "numnum:sum:MEAN_BBXC": 173.92498700000002, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 35.15, "numnum:min:MEAN_BBYC": 0.395238, "numnum:sum:MEAN_BBYC": 122.71799999999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 29, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 63, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 10884261, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 378, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9023, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 466, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1107, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 33.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 82.76, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 44.39, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 112.4, "numnum:count:POP1950": 6, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1084, "numnum:count:POP1955": 6, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1396, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1927, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2824, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3650, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5006, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5932, "numnum:count:POP1985": 6, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6803, "numnum:count:POP1990": 6, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7745, "numnum:count:POP1995": 6, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9108, "numnum:count:POP2000": 6, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10636, "numnum:count:POP2005": 6, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11622, "numnum:count:POP2010": 6, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11654, "numnum:count:POP2015": 6, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 13017, "numnum:count:POP2020": 6, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 14746, "numnum:count:POP2025": 6, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 16481, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 18170, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 840, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 42, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 3.866701, "numnum:sum:LATITUDE": 160.11820400000003, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 11.516651, "numnum:sum:LONGITUDE": 174.647054, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 989000, "numnum:sum:POP_MAX": 11590000, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 378358, "numnum:sum:POP_MIN": 7581196, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 686347, "numnum:sum:POP_OTHER": 11109998, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 69, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 250441, "numnum:sum:GEONAMEID": 6131753, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 681387, "numnum:sum:MAX_POP10": 11299901, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3684787, "numnum:min:MAX_POP20": 681387, "numnum:sum:MAX_POP20": 12258994, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3684787, "numnum:min:MAX_POP50": 681387, "numnum:sum:MAX_POP50": 12258994, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3684787, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9934426, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 79, "numnum:sum:MIN_AREAKM": 1837, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 545, "numnum:min:MAX_AREAKM": 79, "numnum:sum:MAX_AREAKM": 1982, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 709, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 210, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 764, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 386, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 1347, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 386, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 1460, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 240, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 837, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 240, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 907, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 11.433333, "numnum:sum:MIN_BBXMIN": 173.766667, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 11.433333, "numnum:sum:MAX_BBXMIN": 173.766667, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 11.6, "numnum:sum:MIN_BBXMAX": 175.341666, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 11.6, "numnum:sum:MAX_BBXMAX": 175.458332, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 3.775, "numnum:sum:MIN_BBYMIN": 159.241667, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 3.775, "numnum:sum:MAX_BBYMIN": 159.241667, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 3.983333, "numnum:sum:MIN_BBYMAX": 160.81666600000004, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 3.983333, "numnum:sum:MAX_BBYMAX": 160.9, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 11.518344, "numnum:sum:MEAN_BBXC": 174.62312799999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 3.865639, "numnum:sum:MEAN_BBYC": 160.050189, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 110, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 378358, "numnum:sum:GN_POP": 8285332, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 850, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -6320, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 9, "numnum:sum:UN_FID": 1528, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 3.86, "numnum:sum:UN_LAT": 160.06, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 11.51, "numnum:sum:UN_LONG": 174.82, "numnum:count:POP1950": 6, "numnum:max:POP1950": 418, "numnum:min:POP1950": 22, "numnum:sum:POP1950": 1184, "numnum:count:POP1955": 6, "numnum:max:POP1955": 556, "numnum:min:POP1955": 40, "numnum:sum:POP1955": 1655, "numnum:count:POP1960": 6, "numnum:max:POP1960": 738, "numnum:min:POP1960": 71, "numnum:sum:POP1960": 2275, "numnum:count:POP1965": 6, "numnum:max:POP1965": 954, "numnum:min:POP1965": 109, "numnum:sum:POP1965": 3004, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1341, "numnum:min:POP1970": 155, "numnum:sum:POP1970": 3874, "numnum:count:POP1975": 6, "numnum:max:POP1975": 1709, "numnum:min:POP1975": 231, "numnum:sum:POP1975": 4849, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1891, "numnum:min:POP1980": 324, "numnum:sum:POP1980": 5724, "numnum:count:POP1985": 6, "numnum:max:POP1985": 2213, "numnum:min:POP1985": 393, "numnum:sum:POP1985": 6724, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2561, "numnum:min:POP1990": 477, "numnum:sum:POP1990": 7844, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2842, "numnum:min:POP1995": 579, "numnum:sum:POP1995": 8926, "numnum:count:POP2000": 6, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 711, "numnum:sum:POP2000": 9952, "numnum:count:POP2005": 6, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 902, "numnum:sum:POP2005": 11120, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 989, "numnum:sum:POP2010": 11590, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 12286, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 13381, "numnum:count:POP2025": 6, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 14438, "numnum:count:POP2050": 6, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 15497, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 41.311702, "numnum:min:LATITUDE": 4.829975, "numnum:sum:LATITUDE": 95.570259, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 69.294933, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 189.43718, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 30, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3100000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 7518275, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 6739732, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 7450716, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 45, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1512569, "numnum:min:GEONAMEID": 344979, "numnum:sum:GEONAMEID": 2817935, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 7542383, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 7735826, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 8051252, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3450173, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7897538, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 1368, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 2095, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 528, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 809, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 978, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 1917, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 607, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 1190, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 69.05, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 188.89999999999999, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 69.05, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 188.916667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 69.436467, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 190.044801, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 69.45, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 190.575, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 41.141667, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 94.308334, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 41.141667, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 94.946781, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 41.483333, "numnum:min:MIN_BBYMAX": 4.883333, "numnum:sum:MIN_BBYMAX": 95.99166600000001, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 41.483333, "numnum:min:MAX_BBYMAX": 4.883333, "numnum:sum:MAX_BBYMAX": 95.99166600000001, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 69.256717, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 189.65905399999998, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 41.318916, "numnum:min:MEAN_BBYC": 4.845167, "numnum:sum:MEAN_BBYC": 95.40611200000001, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 110, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 5852270, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 3404, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 960, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 41.24, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 90.58000000000001, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 69.34, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 157.85000000000003, "numnum:count:POP1950": 4, "numnum:max:POP1950": 897, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2044, "numnum:count:POP1955": 4, "numnum:max:POP1955": 940, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2234, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1005, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2488, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2894, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3406, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3967, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4567, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5094, "numnum:count:POP1990": 4, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5624, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2157, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6039, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2493, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6434, "numnum:count:POP2005": 4, "numnum:max:POP2005": 2902, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6927, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7176, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3453, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7631, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4184, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8606, "numnum:count:POP2025": 4, "numnum:max:POP2025": 5083, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9816, "numnum:count:POP2050": 4, "numnum:max:POP2050": 6156, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11235, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 570, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 106.89780999999999, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 32.583324, "numnum:sum:LONGITUDE": 234.734106, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 2151000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 4839604, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1508225, "numnum:min:POP_MIN": 325021, "numnum:sum:POP_MIN": 3790448, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2153702, "numnum:min:POP_OTHER": 317445, "numnum:sum:POP_OTHER": 4850549, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 45, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 223817, "numnum:sum:GEONAMEID": 3511614, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2155592, "numnum:min:MAX_POP10": 325021, "numnum:sum:MAX_POP10": 4881660, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2153391, "numnum:min:MAX_POP20": 325021, "numnum:sum:MAX_POP20": 4879459, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2322955, "numnum:min:MAX_POP50": 325021, "numnum:sum:MAX_POP50": 5049023, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2322955, "numnum:min:MAX_POP300": 325021, "numnum:sum:MAX_POP300": 5049023, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 405, "numnum:min:MIN_AREAKM": 42, "numnum:sum:MIN_AREAKM": 912, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 465, "numnum:min:MAX_AREAKM": 42, "numnum:sum:MAX_AREAKM": 972, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 156, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 351, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 180, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 375, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 391, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 854, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 470, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 933, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 243, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 531, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 292, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 580, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 32.45, "numnum:sum:MIN_BBXMIN": 234.20000000000005, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 32.5, "numnum:sum:MAX_BBXMIN": 234.25, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 32.8, "numnum:sum:MIN_BBXMAX": 235.225, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 32.8, "numnum:sum:MAX_BBXMAX": 235.225, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 106.308333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 106.441719, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 107.341667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 107.341667, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 32.614686, "numnum:sum:MEAN_BBXC": 234.755097, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 106.914277, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 43, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1508225, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 3830909, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1206, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 2461, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 507, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 625, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.1, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 120.15, "numnum:count:POP1950": 4, "numnum:max:POP1950": 253, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 348, "numnum:count:POP1955": 4, "numnum:max:POP1955": 312, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 422, "numnum:count:POP1960": 4, "numnum:max:POP1960": 384, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 521, "numnum:count:POP1965": 4, "numnum:max:POP1965": 472, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 694, "numnum:count:POP1970": 4, "numnum:max:POP1970": 581, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 921, "numnum:count:POP1975": 4, "numnum:max:POP1975": 715, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1113, "numnum:count:POP1980": 4, "numnum:max:POP1980": 881, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1350, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1029, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1624, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1161, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1916, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1417, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2329, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1730, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2827, "numnum:count:POP2005": 4, "numnum:max:POP2005": 2025, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3343, "numnum:count:POP2010": 4, "numnum:max:POP2010": 2151, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3571, "numnum:count:POP2015": 4, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3937, "numnum:count:POP2020": 4, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4599, "numnum:count:POP2025": 4, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5357, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3198, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6236, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 830, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 27, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 42.873079, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 118.793116, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 74.585204, "numnum:min:LONGITUDE": 38.933324, "numnum:sum:LONGITUDE": 253.214775, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 477876, "numnum:sum:POP_MAX": 11816678, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 10604322, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 11567345, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 57, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 57, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 1528675, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 2113332, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 11766866, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 11766866, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 11766866, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 11519848, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 496, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 1031, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 1031, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 191, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 397, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 397, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 245, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 697, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 245, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 697, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 433, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 152, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 433, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 74.425, "numnum:min:MIN_BBXMIN": 38.858333, "numnum:sum:MIN_BBXMIN": 252.67499999999999, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 74.425, "numnum:min:MAX_BBXMIN": 38.858333, "numnum:sum:MAX_BBXMIN": 252.67499999999999, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 74.8, "numnum:min:MIN_BBXMAX": 38.975, "numnum:sum:MIN_BBXMAX": 253.733333, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 74.8, "numnum:min:MAX_BBXMAX": 38.975, "numnum:sum:MAX_BBXMAX": 253.733333, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 42.766667, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 118.325001, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 42.766667, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 118.325001, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 43, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 119.333333, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 43, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 119.333333, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 74.603823, "numnum:min:MEAN_BBXC": 38.926873, "numnum:sum:MEAN_BBXC": 253.21860900000002, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 42.872917, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 118.842531, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 9095115, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 2360, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 5528, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1224, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 42.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 94, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 74.77, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 170.41, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1237, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1640, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2181, "numnum:count:POP1965": 5, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2922, "numnum:count:POP1970": 5, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3834, "numnum:count:POP1975": 5, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4899, "numnum:count:POP1980": 5, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5855, "numnum:count:POP1985": 5, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6824, "numnum:count:POP1990": 5, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7653, "numnum:count:POP1995": 5, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8424, "numnum:count:POP2000": 5, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9263, "numnum:count:POP2005": 5, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10271, "numnum:count:POP2010": 5, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10718, "numnum:count:POP2015": 5, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11435, "numnum:count:POP2020": 5, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 12721, "numnum:count:POP2025": 5, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14051, "numnum:count:POP2050": 5, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15292, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 940, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 130.04606, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 388.0772300000001, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 6787000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 11432168, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 5104047, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 7280514, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 8102712, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 12088975, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 62, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 1277333, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 4338773, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 8181096, "numnum:min:MAX_POP10": 274538, "numnum:sum:MAX_POP10": 12366560, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8181096, "numnum:min:MAX_POP20": 274538, "numnum:sum:MAX_POP20": 12776413, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 8553953, "numnum:min:MAX_POP50": 275382, "numnum:sum:MAX_POP50": 19889793, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 8553953, "numnum:min:MAX_POP300": 275382, "numnum:sum:MAX_POP300": 19890727, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2443, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 3711, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 5463, "numnum:min:MAX_AREAKM": 38, "numnum:sum:MAX_AREAKM": 8898, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 943, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 1432, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 2109, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 3435, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 65, "numnum:sum:MIN_PERKM": 2835, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 4154, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 7038, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 40, "numnum:sum:MIN_PERMI": 1763, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 2581, "numnum:min:MAX_PERMI": 42, "numnum:sum:MAX_PERMI": 4374, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 386.51979800000006, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 387.28771900000006, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 389.230007, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 389.741667, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 127.891667, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 128.608333, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 130.69166700000003, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 131.458333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 388.259023, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 129.653316, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 50, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 5104047, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 9055062, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 3240, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 4213, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1413, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 78.1, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 77.58, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 243.95, "numnum:count:POP1950": 6, "numnum:max:POP1950": 746, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 914, "numnum:count:POP1955": 6, "numnum:max:POP1955": 939, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1159, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1166, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1484, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1377, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1882, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1615, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2510, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2111, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3351, "numnum:count:POP1980": 6, "numnum:max:POP1980": 2812, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4443, "numnum:count:POP1985": 6, "numnum:max:POP1985": 3395, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5524, "numnum:count:POP1990": 6, "numnum:max:POP1990": 4036, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6806, "numnum:count:POP1995": 6, "numnum:max:POP1995": 4744, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7533, "numnum:count:POP2000": 6, "numnum:max:POP2000": 5567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8861, "numnum:count:POP2005": 6, "numnum:max:POP2005": 6465, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10500, "numnum:count:POP2010": 6, "numnum:max:POP2010": 6787, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10730, "numnum:count:POP2015": 6, "numnum:max:POP2015": 7229, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11885, "numnum:count:POP2020": 6, "numnum:max:POP2020": 7967, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13341, "numnum:count:POP2025": 6, "numnum:max:POP2025": 8795, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14875, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9719, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 16524, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 2130, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 39, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 34.51669, "numnum:min:LATITUDE": 6.931966, "numnum:sum:LATITUDE": 161.66649199999999, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 85.316642, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 467.86067, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 217000, "numnum:sum:POP_MAX": 29945697, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 217000, "numnum:sum:POP_MIN": 22777537, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 586861, "numnum:sum:POP_OTHER": 26394705, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 82, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 82, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 7851383, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 586861, "numnum:sum:MAX_POP10": 27457084, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 586861, "numnum:sum:MAX_POP20": 37065381, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 20149761, "numnum:min:MAX_POP50": 586861, "numnum:sum:MAX_POP50": 38148075, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 20149761, "numnum:min:MAX_POP300": 586861, "numnum:sum:MAX_POP300": 45155355, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 22394487, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1100, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1054, "numnum:min:MIN_AREAKM": 104, "numnum:sum:MIN_AREAKM": 3468, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 6238, "numnum:min:MAX_AREAKM": 104, "numnum:sum:MAX_AREAKM": 11133, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 407, "numnum:min:MIN_AREAMI": 40, "numnum:sum:MIN_AREAMI": 1339, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 2408, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 4298, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 847, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 2466, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 5343, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 8833, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 526, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 1532, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 3320, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 5488, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 85.108333, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 466.558333, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 85.108333, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 466.575, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 85.450066, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 468.80958100000006, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 85.675, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 470.62499899999997, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 34.433333, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 159.958334, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 34.433333, "numnum:min:MAX_BBYMIN": 6.854447, "numnum:sum:MAX_BBYMIN": 161.02390300000003, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 34.768813, "numnum:min:MIN_BBYMAX": 7.633333, "numnum:sum:MIN_BBYMAX": 163.34381199999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 35.166667, "numnum:min:MAX_BBYMAX": 7.8, "numnum:sum:MAX_BBYMAX": 164.216667, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 85.356097, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 468.033762, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 34.688498, "numnum:min:MEAN_BBYC": 7.222799, "numnum:sum:MEAN_BBYC": 162.33514200000003, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 66, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 217000, "numnum:sum:GN_POP": 23534947, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 1317, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 1317, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 4747, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1893, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 131.23, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 85.31, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 329.34999999999999, "numnum:count:POP1950": 7, "numnum:max:POP1950": 2857, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3221, "numnum:count:POP1955": 7, "numnum:max:POP1955": 3432, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3885, "numnum:count:POP1960": 7, "numnum:max:POP1960": 4060, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4638, "numnum:count:POP1965": 7, "numnum:max:POP1965": 4854, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5633, "numnum:count:POP1970": 7, "numnum:max:POP1970": 5811, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 6918, "numnum:count:POP1975": 7, "numnum:max:POP1975": 7082, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8813, "numnum:count:POP1980": 7, "numnum:max:POP1980": 8658, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 11170, "numnum:count:POP1985": 7, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 13709, "numnum:count:POP1990": 7, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 16810, "numnum:count:POP1995": 7, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 19921, "numnum:count:POP2000": 7, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 23198, "numnum:count:POP2005": 7, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 27476, "numnum:count:POP2010": 7, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 28994, "numnum:count:POP2015": 7, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 31241, "numnum:count:POP2020": 7, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 35074, "numnum:count:POP2025": 7, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 39225, "numnum:count:POP2050": 7, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 43819, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1330, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 26, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 183.294422, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 88.324676, "numnum:min:LONGITUDE": 50.583052, "numnum:sum:LONGITUDE": 468.297801, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 14787000, "numnum:min:POP_MAX": 112927, "numnum:sum:POP_MAX": 19045588, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 4631392, "numnum:min:POP_MIN": 103693, "numnum:sum:POP_MIN": 7199048, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 8060107, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 18044898, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 73, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3174186, "numnum:min:GEONAMEID": 162183, "numnum:sum:GEONAMEID": 7675098, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 19976592, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 18577087, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 35075187, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 84225733, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 123160546, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 4328, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 240884, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 1672, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 93004, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 1160, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 166740, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 722, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 103608, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 85.483333, "numnum:min:MIN_BBXMIN": 50.441667, "numnum:sum:MIN_BBXMIN": 458.65833299999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 87.714444, "numnum:min:MAX_BBXMIN": 50.441667, "numnum:sum:MAX_BBXMIN": 466.88577000000006, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 88.85, "numnum:min:MIN_BBXMAX": 50.633333, "numnum:sum:MIN_BBXMAX": 469.648496, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 89.455426, "numnum:min:MAX_BBXMAX": 50.633333, "numnum:sum:MAX_BBXMAX": 475.38875899999996, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 175.52500099999998, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 181.86718999999997, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 183.847453, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 191.259961, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 88.040398, "numnum:min:MEAN_BBXC": 50.542529, "numnum:sum:MEAN_BBXC": 468.06882399999997, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 183.10890700000005, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 56, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 4631392, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 6714147, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 808, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8058, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 245, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 245, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 22.54, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 88.33, "numnum:count:POP1950": 7, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4513, "numnum:count:POP1955": 7, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5055, "numnum:count:POP1960": 7, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5652, "numnum:count:POP1965": 7, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 6261, "numnum:count:POP1970": 7, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 6926, "numnum:count:POP1975": 7, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7888, "numnum:count:POP1980": 7, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9030, "numnum:count:POP1985": 7, "numnum:max:POP1985": 9946, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 9946, "numnum:count:POP1990": 7, "numnum:max:POP1990": 10890, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10890, "numnum:count:POP1995": 7, "numnum:max:POP1995": 11924, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11924, "numnum:count:POP2000": 7, "numnum:max:POP2000": 13058, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13058, "numnum:count:POP2005": 7, "numnum:max:POP2005": 14282, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 14282, "numnum:count:POP2010": 7, "numnum:max:POP2010": 14787, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14787, "numnum:count:POP2015": 7, "numnum:max:POP2015": 15577, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 15577, "numnum:count:POP2020": 7, "numnum:max:POP2020": 17039, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 17039, "numnum:count:POP2025": 7, "numnum:max:POP2025": 18707, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18707, "numnum:count:POP2050": 7, "numnum:max:POP2050": 20560, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 20560, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.194877 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 450, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 6.900004, "numnum:sum:LATITUDE": 44.716685, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 79.949993, "numnum:sum:LONGITUDE": 281.966685, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 4378000, "numnum:min:POP_MAX": 115826, "numnum:sum:POP_MAX": 8581826, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3301820, "numnum:min:POP_MIN": 115826, "numnum:sum:POP_MIN": 4848916, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 2456292, "numnum:sum:POP_OTHER": 11046729, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1581130, "numnum:min:GEONAMEID": 1238992, "numnum:sum:GEONAMEID": 4118946, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 2189383, "numnum:sum:MAX_POP10": 11112009, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7346227, "numnum:min:MAX_POP20": 3301820, "numnum:sum:MAX_POP20": 14087231, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 3301820, "numnum:sum:MAX_POP50": 24398374, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 27002451, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 345, "numnum:sum:MIN_AREAKM": 4122, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 345, "numnum:sum:MAX_AREAKM": 17237, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 133, "numnum:sum:MIN_AREAMI": 1591, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 133, "numnum:sum:MAX_AREAMI": 6655, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 199, "numnum:sum:MIN_PERKM": 2522, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 199, "numnum:sum:MAX_PERKM": 12854, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 123, "numnum:sum:MIN_PERMI": 1566, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 123, "numnum:sum:MAX_PERMI": 7987, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 79.866667, "numnum:sum:MIN_BBXMIN": 280.866667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 79.883827, "numnum:sum:MAX_BBXMIN": 281.52511400000005, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 80.366283, "numnum:sum:MIN_BBXMAX": 282.86235, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 80.733333, "numnum:sum:MAX_BBXMAX": 283.808333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 19.283333, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 41.916667000000007, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 6.708333, "numnum:sum:MAX_BBYMIN": 44.045237, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 7.34579, "numnum:sum:MIN_BBYMAX": 45.689999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 7.34579, "numnum:sum:MAX_BBYMAX": 46.154123, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 80.0976, "numnum:sum:MEAN_BBXC": 282.135127, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 6.842005, "numnum:sum:MEAN_BBYC": 44.574051, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 17, "numnum:sum:ADMIN1_COD": 97, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 4477638, "numnum:min:GN_POP": 115826, "numnum:sum:GN_POP": 6024734, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 35, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 74, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 451, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 454, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 37.900000000000009, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 201.94, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1302, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1582, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1440, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1865, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1592, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2236, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1760, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2677, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3253, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2151, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4035, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2606, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4984, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2854, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5483, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3126, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6033, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3424, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6637, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3752, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7305, "numnum:count:POP2005": 3, "numnum:max:POP2005": 4170, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8098, "numnum:count:POP2010": 3, "numnum:max:POP2010": 4378, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8466, "numnum:count:POP2015": 3, "numnum:max:POP2015": 4723, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9071, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5357, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10198, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6036, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11397, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6754, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12623, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 17.966693, "numnum:sum:LATITUDE": 85.649923, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 305.635215, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 930000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 2569000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 769612, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 1534784, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 765359, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1235170, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1651944, "numnum:sum:GEONAMEID": 10292260, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 769612, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 1436363, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 769612, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 1436363, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 769612, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 1534784, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 769612, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 1534784, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 166, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 398, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 243, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 475, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 64, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 153, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 94, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 183, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 170, "numnum:min:MIN_PERKM": 144, "numnum:sum:MIN_PERKM": 463, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 283, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 576, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 106, "numnum:min:MIN_PERMI": 89, "numnum:sum:MIN_PERMI": 288, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 176, "numnum:min:MAX_PERMI": 89, "numnum:sum:MAX_PERMI": 358, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 96.141667, "numnum:sum:MIN_BBXMIN": 305.358334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 96.141667, "numnum:sum:MAX_BBXMIN": 305.358334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 96.275, "numnum:sum:MIN_BBXMAX": 306.04166699999998, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 96.275, "numnum:sum:MAX_BBXMAX": 306.133334, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 17.8, "numnum:sum:MIN_BBYMIN": 85.316666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 17.875, "numnum:sum:MAX_BBYMIN": 85.391666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 18.083333, "numnum:sum:MIN_BBYMAX": 85.883333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 18.083333, "numnum:sum:MAX_BBYMAX": 85.883333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 96.205833, "numnum:sum:MEAN_BBXC": 305.7369, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 17.967124, "numnum:sum:MEAN_BBYC": 85.619967, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 55, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 844818, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1041549, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 1581, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 367, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 369, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 67.67, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 203.01, "numnum:count:POP1950": 3, "numnum:max:POP1950": 70, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 70, "numnum:count:POP1955": 3, "numnum:max:POP1955": 112, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 112, "numnum:count:POP1960": 3, "numnum:max:POP1960": 179, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 179, "numnum:count:POP1965": 3, "numnum:max:POP1965": 248, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 248, "numnum:count:POP1970": 3, "numnum:max:POP1970": 298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 298, "numnum:count:POP1975": 3, "numnum:max:POP1975": 356, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 356, "numnum:count:POP1980": 3, "numnum:max:POP1980": 423, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 423, "numnum:count:POP1985": 3, "numnum:max:POP1985": 492, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 492, "numnum:count:POP1990": 3, "numnum:max:POP1990": 572, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 572, "numnum:count:POP1995": 3, "numnum:max:POP1995": 661, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 661, "numnum:count:POP2000": 3, "numnum:max:POP2000": 763, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 763, "numnum:count:POP2005": 3, "numnum:max:POP2005": 856, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 913, "numnum:count:POP2010": 3, "numnum:max:POP2010": 930, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1815, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1024, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1943, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2155, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1321, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2365, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1461, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2573, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 106.962891, 47.931066 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 30.67, "numnum:min:LATITUDE": 11.55003, "numnum:sum:LATITUDE": 79.69308900000002, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 104.916634, "numnum:min:LONGITUDE": 90.408579, "numnum:sum:LONGITUDE": 399.911877, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 1466000, "numnum:sum:POP_MAX": 25090394, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 1466000, "numnum:sum:POP_MIN": 17521853, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 1604086, "numnum:sum:POP_OTHER": 33305311, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 51, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 50, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1821306, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 6431183, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 1551977, "numnum:sum:MAX_POP10": 31379349, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 1551977, "numnum:sum:MAX_POP20": 43129357, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 1551977, "numnum:sum:MAX_POP50": 88982824, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 89307457, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 464, "numnum:sum:MIN_AREAKM": 10719, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 464, "numnum:sum:MAX_AREAKM": 76970, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 179, "numnum:sum:MIN_AREAMI": 4139, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 179, "numnum:sum:MAX_AREAMI": 29719, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 280, "numnum:sum:MIN_PERKM": 4718, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 703, "numnum:sum:MAX_PERKM": 33271, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 174, "numnum:sum:MIN_PERMI": 2932, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 437, "numnum:sum:MAX_PERMI": 20673, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 104.441667, "numnum:min:MIN_BBXMIN": 88.133791, "numnum:sum:MIN_BBXMIN": 395.692125, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 104.441667, "numnum:min:MAX_BBXMIN": 89.9, "numnum:sum:MAX_BBXMIN": 397.941667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 105, "numnum:min:MIN_BBXMAX": 90.816777, "numnum:sum:MIN_BBXMAX": 401.094403, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 105.375, "numnum:min:MAX_BBXMAX": 92.908333, "numnum:sum:MAX_BBXMAX": 404.3, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 28.738768, "numnum:min:MIN_BBYMIN": 11.291667, "numnum:sum:MIN_BBYMIN": 76.388768, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 30.065456, "numnum:min:MAX_BBYMIN": 11.291667, "numnum:sum:MAX_BBYMIN": 78.35672600000001, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 31.083333, "numnum:min:MIN_BBYMAX": 11.691667, "numnum:sum:MIN_BBYMAX": 80.894702, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 31.341667, "numnum:min:MAX_BBYMAX": 11.691667, "numnum:sum:MAX_BBYMAX": 82.77499999999999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 104.78577, "numnum:min:MEAN_BBXC": 90.400679, "numnum:sum:MEAN_BBXC": 399.770738, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 30.486458, "numnum:min:MEAN_BBYC": 11.488418, "numnum:sum:MEAN_BBYC": 79.84098499999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 153, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 1573544, "numnum:sum:GN_POP": 20984957, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 529, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 551, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 5, "numnum:sum:UN_FID": 901, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 30.67, "numnum:min:UN_LAT": 11.56, "numnum:sum:UN_LAT": 79.68, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 104.91, "numnum:min:UN_LONG": 90.4, "numnum:sum:UN_LONG": 399.89, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 336, "numnum:sum:POP1950": 2828, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 376, "numnum:sum:POP1955": 3419, "numnum:count:POP1960": 4, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 389, "numnum:sum:POP1960": 4154, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 436, "numnum:sum:POP1965": 5168, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 900, "numnum:sum:POP1970": 6976, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 100, "numnum:sum:POP1975": 8074, "numnum:count:POP1980": 4, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 238, "numnum:sum:POP1980": 10520, "numnum:count:POP1985": 4, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 427, "numnum:sum:POP1985": 13005, "numnum:count:POP1990": 4, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 615, "numnum:sum:POP1990": 16079, "numnum:count:POP1995": 4, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 836, "numnum:sum:POP1995": 18677, "numnum:count:POP2000": 4, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 1160, "numnum:sum:POP2000": 21696, "numnum:count:POP2005": 4, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 1363, "numnum:sum:POP2005": 24586, "numnum:count:POP2010": 4, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 1466, "numnum:sum:POP2010": 25778, "numnum:count:POP2015": 4, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 1651, "numnum:sum:POP2015": 27631, "numnum:count:POP2020": 4, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 2028, "numnum:sum:POP2020": 31009, "numnum:count:POP2025": 4, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 2457, "numnum:sum:POP2025": 34700, "numnum:count:POP2050": 4, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 2911, "numnum:sum:POP2050": 38578, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1290, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 37.566349, "numnum:min:LATITUDE": 3.166666, "numnum:sum:LATITUDE": 118.96579399999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 171.38, "numnum:min:LONGITUDE": 101.699983, "numnum:sum:LONGITUDE": 772.1995009999999, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 25400, "numnum:sum:POP_MAX": 28357900, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 20500, "numnum:sum:POP_MIN": 27472652, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 33539500, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 68, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2113779, "numnum:min:GEONAMEID": 1735161, "numnum:sum:GEONAMEID": 11159840, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 2084, "numnum:sum:MAX_POP10": 33414304, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 2084, "numnum:sum:MAX_POP20": 34809832, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 2084, "numnum:sum:MAX_POP50": 54229708, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 53829017, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 40576904, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 67552577, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1150, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 5917, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 16400, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 21452, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 2284, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 6332, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 8283, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 7, "numnum:sum:MIN_PERKM": 3407, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 12342, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 15734, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 5, "numnum:sum:MIN_PERMI": 2118, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 7669, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 9776, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 171.366667, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 768.728196, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 171.366667, "numnum:min:MAX_BBXMIN": 101.491667, "numnum:sum:MAX_BBXMIN": 771.075805, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 171.375, "numnum:min:MIN_BBXMAX": 101.841667, "numnum:sum:MIN_BBXMAX": 773.1833340000001, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 171.375, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 773.341667, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 36.75, "numnum:min:MIN_BBYMIN": 2.7, "numnum:sum:MIN_BBYMIN": 116.195061, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 37.412022, "numnum:min:MAX_BBYMIN": 3.040173, "numnum:sum:MAX_BBYMIN": 117.843862, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 37.791667, "numnum:min:MIN_BBYMAX": 3.475, "numnum:sum:MIN_BBYMAX": 120.14166699999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 37.875, "numnum:min:MAX_BBYMAX": 3.475, "numnum:sum:MAX_BBYMAX": 120.883333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 171.370833, "numnum:min:MEAN_BBXC": 101.644598, "numnum:sum:MEAN_BBXC": 771.692663, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 37.485925, "numnum:min:MEAN_BBYC": 3.131431, "numnum:sum:MEAN_BBYC": 118.79822800000001, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 70, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 20500, "numnum:sum:GN_POP": 27956348, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 86, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 202, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 348, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1095, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 37.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 106.91999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 135.75, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 485.85, "numnum:count:POP1950": 6, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8297, "numnum:count:POP1955": 6, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9224, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10412, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 11868, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14116, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 16401, "numnum:count:POP1980": 6, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 18488, "numnum:count:POP1985": 6, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 20178, "numnum:count:POP1990": 6, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21629, "numnum:count:POP1995": 6, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 23696, "numnum:count:POP2000": 6, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 26272, "numnum:count:POP2005": 6, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 27538, "numnum:count:POP2010": 6, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 28036, "numnum:count:POP2015": 6, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 28874, "numnum:count:POP2020": 6, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 30428, "numnum:count:POP2025": 6, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 31828, "numnum:count:POP2050": 6, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 32892, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1590, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 26, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": -4.259186, "numnum:sum:LATITUDE": 116.250092, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 158.149974, "numnum:min:LONGITUDE": 15.284689, "numnum:sum:LONGITUDE": 771.5186719999998, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 11294000, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 34327609, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 4551579, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 13938899, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 9630783, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 21175514, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 77, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 71, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 6697380, "numnum:min:GEONAMEID": 1701668, "numnum:sum:GEONAMEID": 18287066, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 10169723, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 22417583, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 15779579, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 33744531, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 16718429, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 38402955, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 23366503, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 59393671, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 42594594, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 84989245, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1250, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1561, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 2911, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 10661, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 23743, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 603, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 1124, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 4116, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 9167, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 1897, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 7493, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 15350, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 1178, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 4656, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 9538, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 158.158333, "numnum:min:MIN_BBXMIN": 15.15, "numnum:sum:MIN_BBXMIN": 767.4583319999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 158.158333, "numnum:min:MAX_BBXMIN": 15.15, "numnum:sum:MAX_BBXMIN": 770.7045969999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 158.166667, "numnum:min:MIN_BBXMAX": 15.308333, "numnum:sum:MIN_BBXMAX": 772.4806519999999, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 158.166667, "numnum:min:MAX_BBXMAX": 15.308333, "numnum:sum:MAX_BBXMAX": 773.2499999999999, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": -4.333333, "numnum:sum:MIN_BBYMIN": 114.366667, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": -4.333333, "numnum:sum:MAX_BBYMIN": 115.28848, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": -4.15, "numnum:sum:MIN_BBYMAX": 117.01907100000001, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": -4.15, "numnum:sum:MAX_BBYMAX": 120.549528, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 158.1625, "numnum:min:MEAN_BBXC": 15.24454, "numnum:sum:MEAN_BBXC": 771.291739, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": -4.251293, "numnum:sum:MEAN_BBYC": 116.75355499999998, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 32, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 75, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 24610932, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 159, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9633, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1432, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": -4.28, "numnum:sum:UN_LAT": 106.25, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 135.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 511.66999999999998, "numnum:count:POP1950": 7, "numnum:max:POP1950": 4147, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 7972, "numnum:count:POP1955": 7, "numnum:max:POP1955": 5120, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9782, "numnum:count:POP1960": 7, "numnum:max:POP1960": 6227, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 11891, "numnum:count:POP1965": 7, "numnum:max:POP1965": 7654, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 14615, "numnum:count:POP1970": 7, "numnum:max:POP1970": 9408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 17625, "numnum:count:POP1975": 7, "numnum:max:POP1975": 9844, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 20463, "numnum:count:POP1980": 7, "numnum:max:POP1980": 9990, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 22842, "numnum:count:POP1985": 7, "numnum:max:POP1985": 10350, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 25099, "numnum:count:POP1990": 7, "numnum:max:POP1990": 11035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 27915, "numnum:count:POP1995": 7, "numnum:max:POP1995": 11052, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 30327, "numnum:count:POP2000": 7, "numnum:max:POP2000": 11165, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 31888, "numnum:count:POP2005": 7, "numnum:max:POP2005": 11258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 33557, "numnum:count:POP2010": 7, "numnum:max:POP2010": 11294, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 34255, "numnum:count:POP2015": 7, "numnum:max:POP2015": 11662, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 35269, "numnum:count:POP2020": 7, "numnum:max:POP2020": 12786, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 37058, "numnum:count:POP2025": 7, "numnum:max:POP2025": 13892, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 38775, "numnum:count:POP2050": 7, "numnum:max:POP2050": 14808, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 40261, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 2210, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 127.19835, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 909.777909, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 49, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 35676000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 59349625, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 8336599, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 22027775, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 12945252, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 31155780, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 76, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 72, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2110079, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 12614223, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 13762740, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 33634230, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 24218878, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 48292403, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 31303497, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 61138966, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 31303497, "numnum:min:MAX_POP300": 7026, "numnum:sum:MAX_POP300": 68848071, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 181843993, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1500, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 5590, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 126865, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 2159, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 48983, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 1837, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 3257, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 97395, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 1141, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 2023, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 60516, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 902.958335, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 908.5531320000001, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 911.472483, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 911.7833329999999, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 35.175, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 117.783333, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 126.302913, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.358333, "numnum:sum:MIN_BBYMAX": 128.33333199999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.358333, "numnum:sum:MAX_BBYMAX": 128.608333, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 908.8902130000001, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.33869, "numnum:sum:MEAN_BBYC": 125.99859, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 8336599, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 27538642, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1564, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 903, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 101.87, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 139.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 481.51, "numnum:count:POP1950": 7, "numnum:max:POP1950": 11275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 17226, "numnum:count:POP1955": 7, "numnum:max:POP1955": 13713, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 20407, "numnum:count:POP1960": 7, "numnum:max:POP1960": 16679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 24213, "numnum:count:POP1965": 7, "numnum:max:POP1965": 20284, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 28678, "numnum:count:POP1970": 7, "numnum:max:POP1970": 23298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 32760, "numnum:count:POP1975": 7, "numnum:max:POP1975": 26615, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 36935, "numnum:count:POP1980": 7, "numnum:max:POP1980": 28549, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 39629, "numnum:count:POP1985": 7, "numnum:max:POP1985": 30304, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 42349, "numnum:count:POP1990": 7, "numnum:max:POP1990": 32530, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 45619, "numnum:count:POP1995": 7, "numnum:max:POP1995": 33587, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 48227, "numnum:count:POP2000": 7, "numnum:max:POP2000": 34450, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 50889, "numnum:count:POP2005": 7, "numnum:max:POP2005": 35327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 52977, "numnum:count:POP2010": 7, "numnum:max:POP2010": 35676, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 53821, "numnum:count:POP2015": 7, "numnum:max:POP2015": 36094, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 55078, "numnum:count:POP2020": 7, "numnum:max:POP2020": 36371, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 56884, "numnum:count:POP2025": 7, "numnum:max:POP2025": 36399, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 58275, "numnum:count:POP2050": 7, "numnum:max:POP2050": 36400, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 59354, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1060, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -13.983295, "numnum:sum:LATITUDE": -22.972453, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 36.816657, "numnum:min:LONGITUDE": 15.314972, "numnum:sum:LONGITUDE": 115.274937, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 331700, "numnum:sum:POP_MAX": 11831450, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 331700, "numnum:sum:POP_MIN": 9294700, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 1061388, "numnum:sum:POP_OTHER": 10408865, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 46, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2314302, "numnum:min:GEONAMEID": 184745, "numnum:sum:GEONAMEID": 3852392, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 965164, "numnum:sum:MAX_POP10": 11056442, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 912521, "numnum:sum:MAX_POP20": 12022114, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 989470, "numnum:sum:MAX_POP50": 13512171, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 5567255, "numnum:min:MAX_POP300": 989470, "numnum:sum:MAX_POP300": 13514408, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1100, "numnum:min:MIN_AREAKM": 346, "numnum:sum:MIN_AREAKM": 3237, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 357, "numnum:sum:MAX_AREAKM": 8012, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 425, "numnum:min:MIN_AREAMI": 134, "numnum:sum:MIN_AREAMI": 1250, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 138, "numnum:sum:MAX_AREAMI": 3093, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 201, "numnum:sum:MIN_PERKM": 3295, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 219, "numnum:sum:MAX_PERKM": 7529, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 125, "numnum:sum:MIN_PERMI": 2047, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 136, "numnum:sum:MAX_PERMI": 4678, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 36.608333, "numnum:min:MIN_BBXMIN": 15.183333, "numnum:sum:MIN_BBXMIN": 114.55433500000001, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 36.608333, "numnum:min:MAX_BBXMIN": 15.183333, "numnum:sum:MAX_BBXMIN": 114.55833200000001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 37.066667, "numnum:min:MIN_BBXMAX": 15.533333, "numnum:sum:MIN_BBXMAX": 116.42838500000002, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 37.066667, "numnum:min:MAX_BBXMAX": 15.533333, "numnum:sum:MAX_BBXMAX": 117.480756, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -14.433333, "numnum:sum:MIN_BBYMIN": -24.208333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -14.408333, "numnum:sum:MAX_BBYMIN": -23.995344, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -13.691667, "numnum:sum:MIN_BBYMAX": -22.016667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -13.641667, "numnum:sum:MAX_BBYMAX": -21.561529, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 36.804283, "numnum:min:MEAN_BBXC": 15.334415, "numnum:sum:MEAN_BBXC": 115.677261, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -14.028166, "numnum:sum:MEAN_BBYC": -22.890159, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 331700, "numnum:sum:GN_POP": 11514962, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": 224, "numnum:sum:GTOPO30": 3768, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 324, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 492, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -4.32, "numnum:sum:UN_LAT": -5.58, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 36.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 52.089999999999999, "numnum:count:POP1950": 4, "numnum:max:POP1950": 202, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 339, "numnum:count:POP1955": 4, "numnum:max:POP1955": 292, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 493, "numnum:count:POP1960": 4, "numnum:max:POP1960": 443, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 736, "numnum:count:POP1965": 4, "numnum:max:POP1965": 717, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1121, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1601, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2159, "numnum:count:POP1980": 4, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2915, "numnum:count:POP1985": 4, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3883, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4828, "numnum:count:POP1995": 4, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6202, "numnum:count:POP2000": 4, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7718, "numnum:count:POP2005": 4, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9895, "numnum:count:POP2010": 4, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10853, "numnum:count:POP2015": 4, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12415, "numnum:count:POP2020": 4, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 15365, "numnum:count:POP2025": 4, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18756, "numnum:count:POP2050": 4, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 22633, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 560, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -35.409679, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 113.60801000000001, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 5172900, "numnum:min:POP_MAX": 860000, "numnum:sum:POP_MAX": 10534900, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2698652, "numnum:min:POP_MIN": 745261, "numnum:sum:POP_MIN": 6937998, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2757835, "numnum:min:POP_OTHER": 1152904, "numnum:sum:POP_OTHER": 7693888, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 48, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 47, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2240449, "numnum:min:GEONAMEID": 160263, "numnum:sum:GEONAMEID": 3493072, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2757507, "numnum:min:MAX_POP10": 1046787, "numnum:sum:MAX_POP10": 7589005, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2757507, "numnum:min:MAX_POP20": 1833439, "numnum:sum:MAX_POP20": 8806117, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 1833439, "numnum:sum:MAX_POP50": 11607871, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 1839463, "numnum:sum:MAX_POP300": 13650633, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 211, "numnum:sum:MIN_AREAKM": 1359, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 211, "numnum:sum:MAX_AREAKM": 9527, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 81, "numnum:sum:MIN_AREAMI": 524, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 81, "numnum:sum:MAX_AREAMI": 3678, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 1223, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 9696, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 760, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 6025, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 112.39166700000001, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 113.058333, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 114.13333300000001, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 114.391667, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -36.783333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -35.866666, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -34.983297, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -34.291667000000007, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 113.480773, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -35.552223999999998, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 52, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 2776168, "numnum:min:GN_POP": 745261, "numnum:sum:GN_POP": 7762894, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1568, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -6944, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 523, "numnum:min:UN_FID": 182, "numnum:sum:UN_FID": 1606, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": -1.95, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -35.39, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 113.55, "numnum:count:POP1950": 4, "numnum:max:POP1950": 143, "numnum:min:POP1950": 18, "numnum:sum:POP1950": 366, "numnum:count:POP1955": 4, "numnum:max:POP1955": 192, "numnum:min:POP1955": 25, "numnum:sum:POP1955": 501, "numnum:count:POP1960": 4, "numnum:max:POP1960": 248, "numnum:min:POP1960": 34, "numnum:sum:POP1960": 663, "numnum:count:POP1965": 4, "numnum:max:POP1965": 319, "numnum:min:POP1965": 45, "numnum:sum:POP1965": 912, "numnum:count:POP1970": 4, "numnum:max:POP1970": 459, "numnum:min:POP1970": 59, "numnum:sum:POP1970": 1292, "numnum:count:POP1975": 4, "numnum:max:POP1975": 665, "numnum:min:POP1975": 90, "numnum:sum:POP1975": 1859, "numnum:count:POP1980": 4, "numnum:max:POP1980": 962, "numnum:min:POP1980": 128, "numnum:sum:POP1980": 2542, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1295, "numnum:min:POP1985": 168, "numnum:sum:POP1985": 3287, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1568, "numnum:min:POP1990": 219, "numnum:sum:POP1990": 4150, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1953, "numnum:min:POP1995": 289, "numnum:sum:POP1995": 5165, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2591, "numnum:min:POP2000": 497, "numnum:sum:POP2000": 6583, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3533, "numnum:min:POP2005": 775, "numnum:sum:POP2005": 8502, "numnum:count:POP2010": 4, "numnum:max:POP2010": 4000, "numnum:min:POP2010": 860, "numnum:sum:POP2010": 9362, "numnum:count:POP2015": 4, "numnum:max:POP2015": 4775, "numnum:min:POP2015": 947, "numnum:sum:POP2015": 10704, "numnum:count:POP2020": 4, "numnum:max:POP2020": 6036, "numnum:min:POP2020": 1152, "numnum:sum:POP2020": 13047, "numnum:count:POP2025": 4, "numnum:max:POP2025": 7153, "numnum:min:POP2025": 1413, "numnum:sum:POP2025": 15407, "numnum:count:POP2050": 4, "numnum:max:POP2050": 8236, "numnum:min:POP2050": 1715, "numnum:sum:POP2050": 17886, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 870, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -6.183306, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -78.089967, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 35.750004, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 99.55186599999999, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 5029401, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 4143635, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3904672, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 44, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 43, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 7790626, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 4203489, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 4214236, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2443605, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 4214236, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2443605, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3995967, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 534, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 861, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 542, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 869, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 206, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 333, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 209, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 336, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 295, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 538, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 300, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 543, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 183, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 334, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 187, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 338, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 35.691667, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 99.30000000000001, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 35.691667, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 99.30000000000001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 35.808333, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 100.06641199999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 35.808333, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 100.08333400000001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -6.208333, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -78.424999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -6.208333, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -78.424999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -6.116667, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -77.75, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -6.116667, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -77.75, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 35.7475, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 99.67750000000001, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -6.162244, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -78.07230700000001, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 44, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 5149554, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 4135, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1044, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -49.39, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 28.17, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 46.650000000000009, "numnum:count:POP1950": 4, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 649, "numnum:count:POP1955": 4, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 758, "numnum:count:POP1960": 4, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 894, "numnum:count:POP1965": 4, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1105, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1392, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1724, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2142, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2561, "numnum:count:POP1990": 4, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2912, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3296, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3788, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4348, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4543, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4778, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5091, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5424, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5791, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -9.464708, "numnum:min:LATITUDE": -35.283029, "numnum:sum:LATITUDE": -128.280732, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 149.129026, "numnum:min:LONGITUDE": 28.229429, "numnum:sum:LONGITUDE": 457.88036000000008, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1446000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 4119622, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1338000, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 3206069, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1443084, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3364455, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 64, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2172517, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 8121354, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1444949, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 3720281, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1823845, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 4489015, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1822603, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 4487773, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1823845, "numnum:min:MAX_POP300": 128698, "numnum:sum:MAX_POP300": 4489015, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 502, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 1134, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 1367, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 194, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 438, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 529, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 256, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 866, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 256, "numnum:min:MAX_PERKM": 92, "numnum:sum:MAX_PERKM": 1036, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 159, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 539, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 159, "numnum:min:MAX_PERMI": 57, "numnum:sum:MAX_PERMI": 644, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 149, "numnum:min:MIN_BBXMIN": 28.041667, "numnum:sum:MIN_BBXMIN": 457.258334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 149, "numnum:min:MAX_BBXMIN": 28.041667, "numnum:sum:MAX_BBXMIN": 457.34032, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 149.2, "numnum:min:MIN_BBXMAX": 28.4, "numnum:sum:MIN_BBXMAX": 458.325001, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 149.2, "numnum:min:MAX_BBXMAX": 28.4, "numnum:sum:MAX_BBXMAX": 458.358334, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": -9.508333, "numnum:min:MIN_BBYMIN": -35.483333, "numnum:sum:MIN_BBYMIN": -128.96666600000004, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": -9.508333, "numnum:min:MAX_BBYMIN": -35.455764, "numnum:sum:MAX_BBYMIN": -128.845503, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": -9.358333, "numnum:min:MIN_BBYMAX": -35.183333, "numnum:sum:MIN_BBYMAX": -127.51666599999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": -9.358333, "numnum:min:MAX_BBYMAX": -35.183333, "numnum:sum:MAX_BBYMAX": -127.51666599999999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 149.094107, "numnum:min:MEAN_BBXC": 28.214676, "numnum:sum:MEAN_BBXC": 457.793901, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": -9.433491, "numnum:min:MEAN_BBYC": -35.309627, "numnum:sum:MEAN_BBYC": -128.241429, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1619438, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 3620582, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1282, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 2156, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 836, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -51.69, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 32.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 60.78, "numnum:count:POP1950": 6, "numnum:max:POP1950": 275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 367, "numnum:count:POP1955": 6, "numnum:max:POP1955": 340, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 469, "numnum:count:POP1960": 6, "numnum:max:POP1960": 419, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 600, "numnum:count:POP1965": 6, "numnum:max:POP1965": 488, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 747, "numnum:count:POP1970": 6, "numnum:max:POP1970": 565, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 936, "numnum:count:POP1975": 6, "numnum:max:POP1975": 624, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1080, "numnum:count:POP1980": 6, "numnum:max:POP1980": 688, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1238, "numnum:count:POP1985": 6, "numnum:max:POP1985": 763, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1416, "numnum:count:POP1990": 6, "numnum:max:POP1990": 911, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1687, "numnum:count:POP1995": 6, "numnum:max:POP1995": 951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1872, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1096, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2180, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1334, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2607, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1446, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2784, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1621, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3030, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1921, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3403, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3779, "numnum:count:POP2050": 6, "numnum:max:POP2050": 2560, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4164, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1070, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.559388, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -141.82569, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 408.87647799999999, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 7140848, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 5508573, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5084281, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 59, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 55, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2147714, "numnum:min:GEONAMEID": 932505, "numnum:sum:GEONAMEID": 7665437, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 5044498, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 5044498, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 5477049, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5467267, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 750, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 2036, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 1409, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 2367, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 785, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 544, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 913, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 1466, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 717, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 1715, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 911, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 445, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 1065, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 407.783332, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 408.081962, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 409.383333, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 409.41666699999998, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": -8.583333, "numnum:min:MIN_BBYMIN": -34.091667, "numnum:sum:MIN_BBYMIN": -142.52499999999999, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": -8.583333, "numnum:min:MAX_BBYMIN": -34.091667, "numnum:sum:MAX_BBYMIN": -142.52499999999999, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": -8.541667, "numnum:min:MIN_BBYMAX": -33.641667, "numnum:sum:MIN_BBYMAX": -141.04166800000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": -8.541667, "numnum:min:MAX_BBYMAX": -33.6, "numnum:sum:MAX_BBYMAX": -141.000001, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 408.756621, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": -8.559115, "numnum:min:MEAN_BBYC": -33.846724, "numnum:sum:MEAN_BBYC": -141.718581, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 6267332, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1482, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 4437, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 345, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 621, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.88, "numnum:sum:UN_LAT": -52.78, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 198.54000000000003, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1867, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2095, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2387, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2688, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3030, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3414, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3807, "numnum:count:POP1985": 6, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4174, "numnum:count:POP1990": 6, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4580, "numnum:count:POP1995": 6, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5008, "numnum:count:POP2000": 6, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5439, "numnum:count:POP2005": 6, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5850, "numnum:count:POP2010": 6, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6024, "numnum:count:POP2015": 6, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6304, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6811, "numnum:count:POP2025": 6, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7358, "numnum:count:POP2050": 6, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7944, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.686952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1470, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -130.21777099999998, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 144.975016, "numnum:min:LONGITUDE": 26.229913, "numnum:sum:LONGITUDE": 392.647702, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 17316778, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 11215983, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 15367441, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 62, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2158177, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 6989729, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 16036900, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 23613027, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 30575700, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 30132815, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 49805555, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 950, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 3585, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 22751, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 1384, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 8784, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1316, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 12036, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 817, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 7478, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 144.608333, "numnum:min:MIN_BBXMIN": 26.166667, "numnum:sum:MIN_BBXMIN": 390.91666699999998, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 144.728637, "numnum:min:MAX_BBXMIN": 26.166667, "numnum:sum:MAX_BBXMIN": 391.61915799999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 145.327432, "numnum:min:MIN_BBXMAX": 26.3, "numnum:sum:MIN_BBXMAX": 393.386964, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 145.4, "numnum:min:MAX_BBXMAX": 26.3, "numnum:sum:MAX_BBXMAX": 396.633333, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -132.525, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -130.993627, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -129.53990499999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -129.325, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 145.053821, "numnum:min:MEAN_BBXC": 26.225714, "numnum:sum:MEAN_BBXC": 392.91248800000008, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -130.406312, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 14858959, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -5668, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1012, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -70.18, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 145.07, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 279.87, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3684, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 4562, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5677, "numnum:count:POP1965": 6, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 6653, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7693, "numnum:count:POP1975": 6, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8921, "numnum:count:POP1980": 6, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 10405, "numnum:count:POP1985": 6, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11717, "numnum:count:POP1990": 6, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 13190, "numnum:count:POP1995": 6, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 13844, "numnum:count:POP2000": 6, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14555, "numnum:count:POP2005": 6, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 15742, "numnum:count:POP2010": 6, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 16288, "numnum:count:POP2015": 6, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 17172, "numnum:count:POP2020": 6, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 18590, "numnum:count:POP2025": 6, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 19742, "numnum:count:POP2050": 6, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 20642, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.194877 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -9.437994, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -50.737967999999998, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 174.783274, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 334.73304, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 393400, "numnum:min:POP_MAX": 76328, "numnum:sum:POP_MAX": 469728, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 199200, "numnum:min:POP_MIN": 56298, "numnum:sum:POP_MIN": 255498, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 140594, "numnum:min:POP_OTHER": 76328, "numnum:sum:POP_OTHER": 216922, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2144168, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 4252670, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 144164, "numnum:min:MAX_POP10": 76328, "numnum:sum:MAX_POP10": 220492, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 144164, "numnum:min:MAX_POP20": 76328, "numnum:sum:MAX_POP20": 220492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 144164, "numnum:min:MAX_POP50": 76328, "numnum:sum:MAX_POP50": 220492, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 144164, "numnum:min:MAX_POP300": 76328, "numnum:sum:MAX_POP300": 220492, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 77, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 95, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 77, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 95, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 30, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 37, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 30, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 37, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 79, "numnum:min:MIN_PERKM": 33, "numnum:sum:MIN_PERKM": 112, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 79, "numnum:min:MAX_PERKM": 33, "numnum:sum:MAX_PERKM": 112, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 49, "numnum:min:MIN_PERMI": 21, "numnum:sum:MIN_PERMI": 70, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 49, "numnum:min:MAX_PERMI": 21, "numnum:sum:MAX_PERMI": 70, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 174.725, "numnum:min:MIN_BBXMIN": 159.916667, "numnum:sum:MIN_BBXMIN": 334.641667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 174.725, "numnum:min:MAX_BBXMIN": 159.916667, "numnum:sum:MAX_BBXMIN": 334.641667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 174.841667, "numnum:min:MIN_BBXMAX": 160.016667, "numnum:sum:MIN_BBXMAX": 334.858334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 174.841667, "numnum:min:MAX_BBXMAX": 160.016667, "numnum:sum:MAX_BBXMAX": 334.858334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -9.441667, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -50.791667000000007, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -9.441667, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -50.791667000000007, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -9.408333, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -50.608333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -9.408333, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -50.608333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 174.78792, "numnum:min:MEAN_BBXC": 159.966865, "numnum:sum:MEAN_BBXC": 334.754785, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -9.42996, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -50.715499, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 56298, "numnum:min:GN_POP": 5428, "numnum:sum:GN_POP": 61726, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 316, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -17.73335, "numnum:min:LATITUDE": -36.850013, "numnum:sum:LATITUDE": -54.583363, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 174.764981, "numnum:min:LONGITUDE": 168.316641, "numnum:sum:LONGITUDE": 343.08162200000006, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 44040, "numnum:sum:POP_MAX": 1289040, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 35901, "numnum:sum:POP_MIN": 309921, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 7702, "numnum:sum:POP_OTHER": 251496, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2193733, "numnum:min:GEONAMEID": 2135171, "numnum:sum:GEONAMEID": 4328904, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 7702, "numnum:sum:MAX_POP10": 281722, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 7702, "numnum:sum:MAX_POP20": 361935, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 7702, "numnum:sum:MAX_POP50": 358066, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 7702, "numnum:sum:MAX_POP300": 645702, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 176, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 406, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 68, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 157, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 121, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 282, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 75, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 176, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 174.583333, "numnum:min:MIN_BBXMIN": 168.3, "numnum:sum:MIN_BBXMIN": 342.883333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 174.657483, "numnum:min:MAX_BBXMIN": 168.3, "numnum:sum:MAX_BBXMIN": 342.957483, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 174.883333, "numnum:min:MIN_BBXMAX": 168.325, "numnum:sum:MIN_BBXMAX": 343.208333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 174.983333, "numnum:min:MAX_BBXMAX": 168.325, "numnum:sum:MAX_BBXMAX": 343.30833299999997, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -17.758333, "numnum:min:MIN_BBYMIN": -37.091667, "numnum:sum:MIN_BBYMIN": -54.85, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -17.758333, "numnum:min:MAX_BBYMIN": -36.964958, "numnum:sum:MAX_BBYMIN": -54.723291, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -17.708333, "numnum:min:MIN_BBYMAX": -36.825, "numnum:sum:MIN_BBYMAX": -54.533333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -17.708333, "numnum:min:MAX_BBYMAX": -36.8, "numnum:sum:MAX_BBYMAX": -54.50833299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 174.755045, "numnum:min:MEAN_BBXC": 168.3125, "numnum:sum:MEAN_BBXC": 343.067545, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -17.728125, "numnum:min:MEAN_BBYC": -36.896818, "numnum:sum:MEAN_BBYC": -54.624943, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 35901, "numnum:sum:GN_POP": 453811, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 26, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 33, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 2, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 2, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 2, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 2, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 2, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 2, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 2, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 2, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 2, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 2, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 140, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -18.133016, "numnum:sum:LATITUDE": -26.649668000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 178.441707, "numnum:sum:LONGITUDE": 357.65835400000005, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 175399, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 180148, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 88271, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 93020, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 13, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2110394, "numnum:sum:GEONAMEID": 4308542, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 1, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 143230, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 143230, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 143230, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 143230, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 143230, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 143230, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 143230, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 143230, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 100, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 53, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 53, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 53, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 53, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 20, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 20, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 20, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 20, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 56, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 56, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 56, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 56, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 35, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 35, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 35, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 35, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 178.425, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 178.425, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 178.533333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 178.533333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -18.166667, "numnum:sum:MIN_BBYMIN": -18.166667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -18.166667, "numnum:sum:MAX_BBYMIN": -18.166667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -18.025, "numnum:sum:MIN_BBYMAX": -18.025, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -18.025, "numnum:sum:MAX_BBYMAX": -18.025, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 178.472885, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -18.106731, "numnum:sum:MEAN_BBYC": -18.106731, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 77366, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 82115, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": -9999, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19998, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.494105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -0.214988, "numnum:min:LATITUDE": -19.040971, "numnum:sum:LATITUDE": -19.255959, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -65.259516, "numnum:min:LONGITUDE": -78.500051, "numnum:sum:LONGITUDE": -143.759567, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1701000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 1925838, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1399814, "numnum:min:POP_MIN": 221736, "numnum:sum:POP_MIN": 1621550, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1435528, "numnum:min:POP_OTHER": 221736, "numnum:sum:POP_OTHER": 1657264, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 3652462, "numnum:sum:GEONAMEID": 7556449, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1472051, "numnum:min:MAX_POP10": 221736, "numnum:sum:MAX_POP10": 1693787, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1892286, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 2114022, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1892286, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 2114022, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1892286, "numnum:min:MAX_POP300": 221736, "numnum:sum:MAX_POP300": 2114022, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 334, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 368, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 530, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 129, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 142, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 204, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 233, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 265, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 359, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 391, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 145, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 165, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 223, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 243, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -65.3, "numnum:min:MIN_BBXMIN": -78.591667, "numnum:sum:MIN_BBXMIN": -143.89166699999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -65.3, "numnum:min:MAX_BBXMIN": -78.591667, "numnum:sum:MAX_BBXMIN": -143.89166699999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -65.225, "numnum:min:MIN_BBXMAX": -78.291667, "numnum:sum:MIN_BBXMAX": -143.51666699999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -65.225, "numnum:min:MAX_BBXMAX": -78.291667, "numnum:sum:MAX_BBXMAX": -143.51666699999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -0.391667, "numnum:min:MIN_BBYMIN": -19.066667, "numnum:sum:MIN_BBYMIN": -19.458334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -0.30257, "numnum:min:MAX_BBYMIN": -19.066667, "numnum:sum:MAX_BBYMIN": -19.369237, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 0.025, "numnum:min:MIN_BBYMAX": -18.991667, "numnum:sum:MIN_BBYMAX": -18.966667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 0.025, "numnum:min:MAX_BBYMAX": -18.991667, "numnum:sum:MAX_BBYMAX": -18.966667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -65.260317, "numnum:min:MEAN_BBXC": -78.460061, "numnum:sum:MEAN_BBXC": -143.72037799999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -0.198438, "numnum:min:MEAN_BBYC": -19.030556, "numnum:sum:MEAN_BBYC": -19.228994, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1399814, "numnum:min:GN_POP": 224838, "numnum:sum:GN_POP": 1624652, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2764, "numnum:min:GTOPO30": 2759, "numnum:sum:GTOPO30": 5523, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 178, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 178, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -0.22, "numnum:sum:UN_LAT": -0.22, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -78.52, "numnum:sum:UN_LONG": -78.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 206, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 206, "numnum:count:POP1955": 2, "numnum:max:POP1955": 257, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 257, "numnum:count:POP1960": 2, "numnum:max:POP1960": 319, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 319, "numnum:count:POP1965": 2, "numnum:max:POP1965": 399, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 399, "numnum:count:POP1970": 2, "numnum:max:POP1970": 501, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 501, "numnum:count:POP1975": 2, "numnum:max:POP1975": 628, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 628, "numnum:count:POP1980": 2, "numnum:max:POP1980": 780, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 780, "numnum:count:POP1985": 2, "numnum:max:POP1985": 936, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 936, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1088, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1088, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1217, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1217, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1357, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1357, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1593, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1593, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1701, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1701, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1846, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1846, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2035, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2035, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2189, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2189, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2316, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2316, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -12.048013, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -45.498027, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -70.667041, "numnum:min:LONGITUDE": -77.050062, "numnum:sum:LONGITUDE": -147.717103, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 5720000, "numnum:sum:POP_MAX": 13732000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 46611, "numnum:sum:POP_MIN": 6804845, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 3066651, "numnum:sum:POP_OTHER": 9135031, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3449741, "numnum:sum:GEONAMEID": 7386197, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 3540014, "numnum:sum:MAX_POP10": 10298248, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 5157058, "numnum:sum:MAX_POP20": 12249991, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 5157058, "numnum:sum:MAX_POP50": 12272672, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 5157058, "numnum:sum:MAX_POP300": 12272864, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 570, "numnum:sum:MIN_AREAKM": 1294, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 790, "numnum:sum:MAX_AREAKM": 1693, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 220, "numnum:sum:MIN_AREAMI": 499, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 305, "numnum:sum:MAX_AREAMI": 654, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 310, "numnum:sum:MIN_PERKM": 625, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 384, "numnum:sum:MAX_PERKM": 942, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 193, "numnum:sum:MIN_PERMI": 389, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 239, "numnum:sum:MAX_PERMI": 586, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -70.958333, "numnum:min:MIN_BBXMIN": -77.166667, "numnum:sum:MIN_BBXMIN": -148.125, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -70.8, "numnum:min:MAX_BBXMIN": -77.153161, "numnum:sum:MAX_BBXMIN": -147.953161, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -70.458333, "numnum:min:MIN_BBXMAX": -76.85, "numnum:sum:MIN_BBXMAX": -147.308333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -70.458333, "numnum:min:MAX_BBXMAX": -76.833333, "numnum:sum:MAX_BBXMAX": -147.291666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -12.316667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -46.016667000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -12.281801, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -45.837943, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -11.808333, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -44.983332999999998, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -11.808333, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -44.983332999999998, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -70.66127, "numnum:min:MEAN_BBXC": -77.010199, "numnum:sum:MEAN_BBXC": -147.671469, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -12.041474, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -45.503209, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 15, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 46611, "numnum:sum:GN_POP": 7783613, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 441, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 549, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 411, "numnum:min:UN_FID": 17, "numnum:sum:UN_FID": 428, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 8.1, "numnum:min:UN_LAT": -12.08, "numnum:sum:UN_LAT": -3.9800000000000006, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -77.04, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -158, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 1066, "numnum:sum:POP1950": 2388, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 1368, "numnum:sum:POP1955": 2986, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 1756, "numnum:sum:POP1960": 3736, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 2284, "numnum:sum:POP1965": 4578, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 2647, "numnum:sum:POP1970": 5627, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 3138, "numnum:sum:POP1975": 6834, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 3721, "numnum:sum:POP1980": 8159, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 4201, "numnum:sum:POP1985": 9317, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 4616, "numnum:sum:POP1990": 10453, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 4964, "numnum:sum:POP1995": 11501, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 5275, "numnum:sum:POP2000": 12391, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 5599, "numnum:sum:POP2005": 13346, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 5720, "numnum:sum:POP2010": 13732, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 5879, "numnum:sum:POP2015": 14254, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 6084, "numnum:sum:POP2020": 14941, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 6224, "numnum:sum:POP2025": 15475, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 6310, "numnum:sum:POP2050": 15910, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -15.78334, "numnum:min:LATITUDE": -33.047764, "numnum:sum:LATITUDE": -65.329078, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -47.916052, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -187.68705100000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3716996, "numnum:min:POP_MAX": 854000, "numnum:sum:POP_MAX": 6160996, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2562963, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 3391700, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1772679, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 1907894, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3911925, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 10826558, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1838722, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 3573594, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1836390, "numnum:min:MAX_POP20": 637860, "numnum:sum:MAX_POP20": 4064732, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1838722, "numnum:min:MAX_POP50": 637860, "numnum:sum:MAX_POP50": 4067064, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1838722, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3429204, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 436, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 651, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 439, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 804, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 168, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 251, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 169, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 310, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 311, "numnum:min:MIN_PERKM": 33, "numnum:sum:MIN_PERKM": 465, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 318, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 590, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 21, "numnum:sum:MIN_PERMI": 289, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 197, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 366, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -48.158333, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -188.074999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -48.158333, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -188.074999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -47.783333, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -187.407743, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -47.783333, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -187.158333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -15.941667, "numnum:min:MIN_BBYMIN": -33.075, "numnum:sum:MIN_BBYMIN": -65.591667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -15.941667, "numnum:min:MAX_BBYMIN": -33.075, "numnum:sum:MAX_BBYMIN": -65.591667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -15.7, "numnum:min:MIN_BBYMAX": -33.016667, "numnum:sum:MIN_BBYMAX": -65.15, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -15.7, "numnum:min:MAX_BBYMAX": -32.916667, "numnum:sum:MAX_BBYMAX": -65.05, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -47.9714, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -187.670416, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -15.824583, "numnum:min:MEAN_BBYC": -33.034648, "numnum:sum:MEAN_BBYC": -65.36567, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2207718, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 3036455, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 5326, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 472, "numnum:min:UN_FID": 18, "numnum:sum:UN_FID": 930, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -24.660000000000005, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -47.89, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -229.74, "numnum:count:POP1950": 3, "numnum:max:POP1950": 328, "numnum:min:POP1950": 36, "numnum:sum:POP1950": 683, "numnum:count:POP1955": 3, "numnum:max:POP1955": 377, "numnum:min:POP1955": 70, "numnum:sum:POP1955": 821, "numnum:count:POP1960": 3, "numnum:max:POP1960": 438, "numnum:min:POP1960": 137, "numnum:sum:POP1960": 1008, "numnum:count:POP1965": 3, "numnum:max:POP1965": 512, "numnum:min:POP1965": 268, "numnum:sum:POP1965": 1261, "numnum:count:POP1970": 3, "numnum:max:POP1970": 600, "numnum:min:POP1970": 525, "numnum:sum:POP1970": 1657, "numnum:count:POP1975": 3, "numnum:max:POP1975": 827, "numnum:min:POP1975": 581, "numnum:sum:POP1975": 2111, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1293, "numnum:min:POP1980": 635, "numnum:sum:POP1980": 2737, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1559, "numnum:min:POP1985": 685, "numnum:sum:POP1985": 3171, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1863, "numnum:min:POP1990": 733, "numnum:sum:POP1990": 3658, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2257, "numnum:min:POP1995": 771, "numnum:sum:POP1995": 4295, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2746, "numnum:min:POP2000": 803, "numnum:sum:POP2000": 4939, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3341, "numnum:min:POP2005": 838, "numnum:sum:POP2005": 5706, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3599, "numnum:min:POP2010": 854, "numnum:sum:POP2010": 6043, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3938, "numnum:min:POP2015": 880, "numnum:sum:POP2015": 6510, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4284, "numnum:min:POP2020": 922, "numnum:sum:POP2020": 7070, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4463, "numnum:min:POP2025": 956, "numnum:sum:POP2025": 7446, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4578, "numnum:min:POP2050": 982, "numnum:sum:POP2050": 7738, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.509833 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -22.925023, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -57.527525, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -43.225021, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -101.622552, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 12795000, "numnum:min:POP_MAX": 11748000, "numnum:sum:POP_MAX": 24543000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 2010175, "numnum:sum:POP_MIN": 12939321, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 10271457, "numnum:min:POP_OTHER": 1821489, "numnum:sum:POP_OTHER": 12092946, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 14, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3451190, "numnum:min:GEONAMEID": 3435910, "numnum:sum:GEONAMEID": 6887100, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 10929146, "numnum:min:MAX_POP10": 2010175, "numnum:sum:MAX_POP10": 12939321, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 10991915, "numnum:min:MAX_POP20": 8118691, "numnum:sum:MAX_POP20": 19110606, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 12611862, "numnum:min:MAX_POP50": 8889292, "numnum:sum:MAX_POP50": 21501154, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 12611862, "numnum:min:MAX_POP300": 8889292, "numnum:sum:MAX_POP300": 21501154, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 12611862, "numnum:min:MAX_POP310": 8889292, "numnum:sum:MAX_POP310": 21501154, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 316, "numnum:sum:MIN_AREAKM": 1991, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2447, "numnum:min:MAX_AREAKM": 1472, "numnum:sum:MAX_AREAKM": 3919, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 769, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 945, "numnum:min:MAX_AREAMI": 568, "numnum:sum:MAX_AREAMI": 1513, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 203, "numnum:sum:MIN_PERKM": 773, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1064, "numnum:min:MAX_PERKM": 691, "numnum:sum:MAX_PERKM": 1755, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 126, "numnum:sum:MIN_PERMI": 480, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 661, "numnum:min:MAX_PERMI": 429, "numnum:sum:MAX_PERMI": 1090, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -43.75, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -102.766667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -43.499182, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -102.256913, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -43.158333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -101.333333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -43.15, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -100.966667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.033333, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -58.041666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.033333, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -58.041666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -22.837896, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -57.212896, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -22.575, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -56.941666999999998, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -43.407551, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -101.916001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -22.856463, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -57.537794000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 6023699, "numnum:sum:GN_POP": 19099999, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 19, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 32, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 489, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 690, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -22.72, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -57.339999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -43.45, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -101.89, "numnum:count:POP1950": 2, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 2950, "numnum:sum:POP1950": 8048, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 3592, "numnum:sum:POP1955": 9391, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 4374, "numnum:sum:POP1960": 10972, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 5387, "numnum:sum:POP1965": 12704, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 6637, "numnum:sum:POP1970": 14742, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8745, "numnum:min:POP1975": 7557, "numnum:sum:POP1975": 16302, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9422, "numnum:min:POP1980": 8583, "numnum:sum:POP1980": 18005, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9959, "numnum:min:POP1985": 9086, "numnum:sum:POP1985": 19045, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10513, "numnum:min:POP1990": 9595, "numnum:sum:POP1990": 20108, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11154, "numnum:min:POP1995": 10174, "numnum:sum:POP1995": 21328, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11847, "numnum:min:POP2000": 10803, "numnum:sum:POP2000": 22650, "numnum:count:POP2005": 2, "numnum:max:POP2005": 12553, "numnum:min:POP2005": 11469, "numnum:sum:POP2005": 24022, "numnum:count:POP2010": 2, "numnum:max:POP2010": 12795, "numnum:min:POP2010": 11748, "numnum:sum:POP2010": 24543, "numnum:count:POP2015": 2, "numnum:max:POP2015": 13089, "numnum:min:POP2015": 12171, "numnum:sum:POP2015": 25260, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13432, "numnum:min:POP2020": 12775, "numnum:sum:POP2020": 26207, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13653, "numnum:min:POP2025": 13179, "numnum:sum:POP2025": 26832, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13768, "numnum:min:POP2050": 13413, "numnum:sum:POP2050": 27181, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -23.55868, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": -58.41672199999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -56.171052, "numnum:sum:LONGITUDE": -102.79607200000001, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 1513000, "numnum:sum:POP_MAX": 20358000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 10021295, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 10026619, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 1276128, "numnum:sum:POP_OTHER": 12799072, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 3448439, "numnum:sum:GEONAMEID": 8486457, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 1381747, "numnum:sum:MAX_POP10": 13876831, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 1381747, "numnum:sum:MAX_POP20": 18807371, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 1381747, "numnum:sum:MAX_POP50": 19585098, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 1381747, "numnum:sum:MAX_POP300": 19585098, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18203351, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 347, "numnum:sum:MIN_AREAKM": 1781, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 347, "numnum:sum:MAX_AREAKM": 3014, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 134, "numnum:sum:MIN_AREAMI": 688, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 134, "numnum:sum:MAX_AREAMI": 1164, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 532, "numnum:min:MIN_PERKM": 266, "numnum:sum:MIN_PERKM": 798, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 1352, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 330, "numnum:min:MIN_PERMI": 165, "numnum:sum:MIN_PERMI": 495, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 840, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -56.291667, "numnum:sum:MIN_BBXMIN": -103.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -56.291667, "numnum:sum:MAX_BBXMIN": -103.348039, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -55.8, "numnum:sum:MIN_BBXMAX": -102.183333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -55.8, "numnum:sum:MAX_BBXMAX": -101.908333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.891667, "numnum:min:MIN_BBYMIN": -34.933333, "numnum:sum:MIN_BBYMIN": -58.825, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.842331, "numnum:min:MAX_BBYMIN": -34.933333, "numnum:sum:MAX_BBYMIN": -58.775664, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -23.358333, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": -58.00833299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -23.241667, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": -57.891667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -56.12273, "numnum:sum:MEAN_BBXC": -102.77421899999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -23.558961, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": -58.387298, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 10021295, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 10026619, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 631, "numnum:min:GTOPO30": 305, "numnum:sum:GTOPO30": 936, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 491, "numnum:sum:UN_FID": 1070, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -23.58, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": -58.5, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -56.16, "numnum:sum:UN_LONG": -102.78, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2334, "numnum:min:POP1950": 1212, "numnum:sum:POP1950": 3546, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3044, "numnum:min:POP1955": 1248, "numnum:sum:POP1955": 4292, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3970, "numnum:min:POP1960": 1285, "numnum:sum:POP1960": 5255, "numnum:count:POP1965": 2, "numnum:max:POP1965": 5494, "numnum:min:POP1965": 1323, "numnum:sum:POP1965": 6817, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7620, "numnum:min:POP1970": 1362, "numnum:sum:POP1970": 8982, "numnum:count:POP1975": 2, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 1403, "numnum:sum:POP1975": 11017, "numnum:count:POP1980": 2, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 1454, "numnum:sum:POP1980": 13543, "numnum:count:POP1985": 2, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 1508, "numnum:sum:POP1985": 14903, "numnum:count:POP1990": 2, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 1546, "numnum:sum:POP1990": 16322, "numnum:count:POP1995": 2, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 1584, "numnum:sum:POP1995": 17532, "numnum:count:POP2000": 2, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 1561, "numnum:sum:POP2000": 18660, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 1525, "numnum:sum:POP2005": 19858, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 1513, "numnum:sum:POP2010": 20358, "numnum:count:POP2015": 2, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 1504, "numnum:sum:POP2015": 21086, "numnum:count:POP2020": 2, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 1506, "numnum:sum:POP2020": 22050, "numnum:count:POP2025": 2, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 1515, "numnum:sum:POP2025": 22639, "numnum:count:POP2050": 2, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 1520, "numnum:sum:POP2050": 22948, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 29.819974, "numnum:sum:LATITUDE": 79.093391, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -218.461623, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4459000, "numnum:min:POP_MAX": 2313328, "numnum:sum:POP_MAX": 6772328, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3647574, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 4251076, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3607616, "numnum:min:POP_OTHER": 482002, "numnum:sum:POP_OTHER": 4089618, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 4699066, "numnum:sum:GEONAMEID": 10872397, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3647574, "numnum:min:MAX_POP10": 1590116, "numnum:sum:MAX_POP10": 5237690, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 4287078, "numnum:min:MAX_POP20": 1588839, "numnum:sum:MAX_POP20": 5875917, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 4352341, "numnum:min:MAX_POP50": 1590116, "numnum:sum:MAX_POP50": 5942457, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4352341, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 5942457, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 706, "numnum:sum:MIN_AREAKM": 3094, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 3041, "numnum:min:MAX_AREAKM": 708, "numnum:sum:MAX_AREAKM": 3749, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 273, "numnum:sum:MIN_AREAMI": 1195, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1174, "numnum:min:MAX_AREAMI": 273, "numnum:sum:MAX_AREAMI": 1447, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 398, "numnum:sum:MIN_PERKM": 1655, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1773, "numnum:min:MAX_PERKM": 405, "numnum:sum:MAX_PERKM": 2178, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 248, "numnum:sum:MIN_PERMI": 1029, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1101, "numnum:min:MAX_PERMI": 251, "numnum:sum:MAX_PERMI": 1352, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -219.125, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -219.125, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -217.84166599999998, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -217.70833299999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 29.475, "numnum:sum:MIN_BBYMIN": 78.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 29.491667, "numnum:sum:MAX_BBYMIN": 78.591667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 30.258915, "numnum:sum:MIN_BBYMAX": 79.642248, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 30.266667, "numnum:sum:MAX_BBYMAX": 79.65, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -218.414696, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 29.810477, "numnum:sum:MEAN_BBYC": 79.039365, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1837969, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1837969, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 63, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 542, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 557, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 29.77, "numnum:sum:UN_LAT": 79.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -218.36, "numnum:count:POP1950": 2, "numnum:max:POP1950": 709, "numnum:min:POP1950": 556, "numnum:sum:POP1950": 1265, "numnum:count:POP1955": 2, "numnum:max:POP1955": 904, "numnum:min:POP1955": 588, "numnum:sum:POP1955": 1492, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1151, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 1771, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1396, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 2232, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1693, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 2738, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2030, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 3180, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2424, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 3671, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2658, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 4017, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2922, "numnum:min:POP1990": 1559, "numnum:sum:POP1990": 4481, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3353, "numnum:min:POP1995": 1789, "numnum:sum:POP1995": 5142, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3849, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 5808, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4324, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 6417, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4459, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 6605, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4609, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 6828, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4790, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 7100, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4936, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 7316, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5049, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 7493, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 37.740008, "numnum:min:LATITUDE": 25.669995, "numnum:sum:LATITUDE": 63.410003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -100.329985, "numnum:min:LONGITUDE": -122.459978, "numnum:sum:LONGITUDE": -222.789963, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3712000, "numnum:min:POP_MAX": 3450000, "numnum:sum:POP_MAX": 7162000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1122874, "numnum:min:POP_MIN": 732072, "numnum:sum:POP_MIN": 1854946, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3225636, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 3253036, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5391959, "numnum:min:GEONAMEID": 3995465, "numnum:sum:GEONAMEID": 9387424, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3296184, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 4284820, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3296184, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 4427183, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3296184, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 4667469, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4561697, "numnum:min:MAX_POP300": 3296184, "numnum:sum:MAX_POP300": 7857881, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 4561697, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4561697, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 594, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 812, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1748, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 2342, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 229, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 313, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 675, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 904, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 208, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 334, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 755, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 963, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 130, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 208, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 469, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 599, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -100.5, "numnum:min:MIN_BBXMIN": -122.516667, "numnum:sum:MIN_BBXMIN": -223.01666699999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -100.5, "numnum:min:MAX_BBXMIN": -122.516667, "numnum:sum:MAX_BBXMIN": -223.01666699999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -100.125, "numnum:min:MIN_BBXMAX": -122.358333, "numnum:sum:MIN_BBXMAX": -222.48333300000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -100.125, "numnum:min:MAX_BBXMAX": -121.733333, "numnum:sum:MAX_BBXMAX": -221.85833300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 37.191667, "numnum:min:MIN_BBYMIN": 25.575, "numnum:sum:MIN_BBYMIN": 62.766667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 37.575, "numnum:min:MAX_BBYMIN": 25.575, "numnum:sum:MAX_BBYMIN": 63.150000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 37.816667, "numnum:min:MIN_BBYMAX": 25.85, "numnum:sum:MIN_BBYMAX": 63.666667000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 38.041667, "numnum:min:MAX_BBYMAX": 25.85, "numnum:sum:MAX_BBYMAX": 63.891667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -100.290632, "numnum:min:MEAN_BBXC": -122.301354, "numnum:sum:MEAN_BBXC": -222.59198600000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 37.622288, "numnum:min:MEAN_BBYC": 25.71613, "numnum:sum:MEAN_BBYC": 63.338418, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1122874, "numnum:min:GN_POP": 732072, "numnum:sum:GN_POP": 1854946, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 16, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 16, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 563, "numnum:min:GTOPO30": 60, "numnum:sum:GTOPO30": 623, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 359, "numnum:sum:UN_FID": 929, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 37.79, "numnum:min:UN_LAT": 25.67, "numnum:sum:UN_LAT": 63.46, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -100.31, "numnum:min:UN_LONG": -122.38, "numnum:sum:UN_LONG": -222.69, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1855, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 2211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2021, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 2519, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2200, "numnum:min:POP1960": 698, "numnum:sum:POP1960": 2898, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2361, "numnum:min:POP1965": 943, "numnum:sum:POP1965": 3304, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2529, "numnum:min:POP1970": 1267, "numnum:sum:POP1970": 3796, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1589, "numnum:sum:POP1975": 4179, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2656, "numnum:min:POP1980": 1992, "numnum:sum:POP1980": 4648, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2805, "numnum:min:POP1985": 2273, "numnum:sum:POP1985": 5078, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2961, "numnum:min:POP1990": 2594, "numnum:sum:POP1990": 5555, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3095, "numnum:min:POP1995": 2961, "numnum:sum:POP1995": 6056, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3266, "numnum:min:POP2000": 3236, "numnum:sum:POP2000": 6502, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3579, "numnum:min:POP2005": 3387, "numnum:sum:POP2005": 6966, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3712, "numnum:min:POP2010": 3450, "numnum:sum:POP2010": 7162, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3901, "numnum:min:POP2015": 3544, "numnum:sum:POP2015": 7445, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4140, "numnum:min:POP2020": 3684, "numnum:sum:POP2020": 7824, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4298, "numnum:min:POP2025": 3803, "numnum:sum:POP2025": 8101, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4413, "numnum:min:POP2050": 3898, "numnum:sum:POP2050": 8311, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 1500, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.739188, "numnum:min:LATITUDE": 19.442442, "numnum:sum:LATITUDE": 93.17160799999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -99.130988, "numnum:min:LONGITUDE": -118.179981, "numnum:sum:LONGITUDE": -322.294985, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 33841000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 1548599, "numnum:sum:POP_MIN": 16054421, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 142265, "numnum:sum:POP_OTHER": 11681987, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 40, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 38, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 5419384, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 14318342, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 1548599, "numnum:sum:MAX_POP10": 17336471, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 2100407, "numnum:sum:MAX_POP20": 25909190, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 2174327, "numnum:sum:MAX_POP50": 35991161, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 2174327, "numnum:sum:MAX_POP300": 35992959, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 33851110, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1338, "numnum:min:MIN_AREAKM": 895, "numnum:sum:MIN_AREAKM": 3142, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 1345, "numnum:sum:MAX_AREAKM": 9228, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 517, "numnum:min:MIN_AREAMI": 345, "numnum:sum:MIN_AREAMI": 1213, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 519, "numnum:sum:MAX_AREAMI": 3563, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 256, "numnum:sum:MIN_PERKM": 1161, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 606, "numnum:sum:MAX_PERKM": 3697, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 159, "numnum:sum:MIN_PERMI": 722, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 376, "numnum:sum:MAX_PERMI": 2297, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -99.366667, "numnum:min:MIN_BBXMIN": -118.991667, "numnum:sum:MIN_BBXMIN": -323.600001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -99.366667, "numnum:min:MAX_BBXMIN": -118.966667, "numnum:sum:MAX_BBXMIN": -323.57500100000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -99.018165, "numnum:min:MIN_BBXMAX": -117.857183, "numnum:sum:MIN_BBXMAX": -321.74201500000006, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -98.808333, "numnum:min:MAX_BBXMAX": -117.008333, "numnum:sum:MAX_BBXMAX": -320.524999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.5, "numnum:min:MIN_BBYMIN": 19.2, "numnum:sum:MIN_BBYMIN": 92.091667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.5, "numnum:min:MAX_BBYMIN": 19.233333, "numnum:sum:MAX_BBYMIN": 92.595964, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.958333, "numnum:min:MIN_BBYMAX": 19.640315, "numnum:sum:MIN_BBYMAX": 93.840315, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.025, "numnum:min:MAX_BBYMAX": 19.908333, "numnum:sum:MAX_BBYMAX": 94.266666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -99.116655, "numnum:min:MEAN_BBXC": -118.107478, "numnum:sum:MEAN_BBXC": -322.2181, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 39.72985, "numnum:min:MEAN_BBYC": 19.473748, "numnum:sum:MEAN_BBYC": 93.184207, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 9, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 14980474, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 89, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 2331, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 547, "numnum:min:UN_FID": 352, "numnum:sum:UN_FID": 1436, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.57, "numnum:min:UN_LAT": 19.42, "numnum:sum:UN_LAT": 92.99, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -99.12, "numnum:min:UN_LONG": -118.25, "numnum:sum:UN_LONG": -322.44, "numnum:count:POP1950": 3, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 505, "numnum:sum:POP1950": 7434, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 641, "numnum:sum:POP1955": 9596, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 809, "numnum:sum:POP1960": 12351, "numnum:count:POP1965": 3, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 923, "numnum:sum:POP1965": 14984, "numnum:count:POP1970": 3, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 1054, "numnum:sum:POP1970": 18201, "numnum:count:POP1975": 3, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 1198, "numnum:sum:POP1975": 20814, "numnum:count:POP1980": 3, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 1356, "numnum:sum:POP1980": 23878, "numnum:count:POP1985": 3, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 1437, "numnum:sum:POP1985": 25727, "numnum:count:POP1990": 3, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 27723, "numnum:count:POP1995": 3, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 29897, "numnum:count:POP2000": 3, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 1998, "numnum:sum:POP2000": 31834, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 2241, "numnum:sum:POP2005": 33283, "numnum:count:POP2010": 3, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 2313, "numnum:sum:POP2010": 33841, "numnum:count:POP2015": 3, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 2396, "numnum:sum:POP2015": 34654, "numnum:count:POP2020": 3, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 2502, "numnum:sum:POP2020": 35851, "numnum:count:POP2025": 3, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 2590, "numnum:sum:POP2025": 36746, "numnum:count:POP2050": 3, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 2661, "numnum:sum:POP2050": 37342, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 41.829991, "numnum:min:LATITUDE": 33.830014, "numnum:sum:LATITUDE": 75.660005, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -84.399949, "numnum:min:LONGITUDE": -87.750055, "numnum:sum:LONGITUDE": -172.15000400000003, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8990000, "numnum:min:POP_MAX": 4506000, "numnum:sum:POP_MAX": 13496000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2841952, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 3264860, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3635101, "numnum:min:POP_OTHER": 2874096, "numnum:sum:POP_OTHER": 6509197, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4887398, "numnum:min:GEONAMEID": 4180439, "numnum:sum:GEONAMEID": 9067837, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3747798, "numnum:min:MAX_POP10": 2928128, "numnum:sum:MAX_POP10": 6675926, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5069998, "numnum:min:MAX_POP20": 3896411, "numnum:sum:MAX_POP20": 8966409, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8416660, "numnum:min:MAX_POP50": 3910939, "numnum:sum:MAX_POP50": 12327599, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8416660, "numnum:min:MAX_POP300": 3910939, "numnum:sum:MAX_POP300": 12327599, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 8450289, "numnum:min:MAX_POP310": 3910939, "numnum:sum:MAX_POP310": 12361228, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 1345, "numnum:sum:MIN_AREAKM": 4106, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 4086, "numnum:sum:MAX_AREAKM": 8890, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 519, "numnum:sum:MIN_AREAMI": 1585, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 1578, "numnum:sum:MAX_AREAMI": 3433, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 471, "numnum:sum:MIN_PERKM": 1965, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 2459, "numnum:sum:MAX_PERKM": 5405, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 293, "numnum:sum:MIN_PERMI": 1222, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 1528, "numnum:sum:MAX_PERMI": 3358, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -84.875, "numnum:min:MIN_BBXMIN": -88.408333, "numnum:sum:MIN_BBXMIN": -173.283333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -84.608333, "numnum:min:MAX_BBXMIN": -88.03629, "numnum:sum:MAX_BBXMIN": -172.644623, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -83.879976, "numnum:min:MIN_BBXMAX": -87.528138, "numnum:sum:MIN_BBXMAX": -171.408114, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -83.858333, "numnum:min:MAX_BBXMAX": -87.125, "numnum:sum:MAX_BBXMAX": -170.98333300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 41.391667, "numnum:min:MIN_BBYMIN": 33.383333, "numnum:sum:MIN_BBYMIN": 74.775, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 41.458333, "numnum:min:MAX_BBYMIN": 33.383333, "numnum:sum:MAX_BBYMIN": 74.841666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.000972, "numnum:min:MIN_BBYMAX": 34.202715, "numnum:sum:MIN_BBYMAX": 76.203687, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.491667, "numnum:min:MAX_BBYMAX": 34.275, "numnum:sum:MAX_BBYMAX": 76.766667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -84.328739, "numnum:min:MEAN_BBXC": -87.85874, "numnum:sum:MEAN_BBXC": -172.187479, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 41.832719, "numnum:min:MEAN_BBYC": 33.851552, "numnum:sum:MEAN_BBYC": 75.684271, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2841952, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 3264860, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 179, "numnum:sum:ELEVATION": 499, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 181, "numnum:sum:GTOPO30": 486, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 524, "numnum:sum:UN_FID": 1055, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.82, "numnum:min:UN_LAT": 33.79, "numnum:sum:UN_LAT": 75.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -84.34, "numnum:min:UN_LONG": -87.64, "numnum:sum:UN_LONG": -171.98000000000003, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 513, "numnum:sum:POP1950": 5512, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 631, "numnum:sum:POP1955": 6196, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 776, "numnum:sum:POP1960": 6959, "numnum:count:POP1965": 2, "numnum:max:POP1965": 6639, "numnum:min:POP1965": 959, "numnum:sum:POP1965": 7598, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 1182, "numnum:sum:POP1970": 8288, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7160, "numnum:min:POP1975": 1386, "numnum:sum:POP1975": 8546, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7216, "numnum:min:POP1980": 1625, "numnum:sum:POP1980": 8841, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7285, "numnum:min:POP1985": 1879, "numnum:sum:POP1985": 9164, "numnum:count:POP1990": 2, "numnum:max:POP1990": 7374, "numnum:min:POP1990": 2184, "numnum:sum:POP1990": 9558, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7839, "numnum:min:POP1995": 2781, "numnum:sum:POP1995": 10620, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8333, "numnum:min:POP2000": 3542, "numnum:sum:POP2000": 11875, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8820, "numnum:min:POP2005": 4307, "numnum:sum:POP2005": 13127, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8990, "numnum:min:POP2010": 4506, "numnum:sum:POP2010": 13496, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9211, "numnum:min:POP2015": 4695, "numnum:sum:POP2015": 13906, "numnum:count:POP2020": 2, "numnum:max:POP2020": 9516, "numnum:min:POP2020": 4888, "numnum:sum:POP2020": 14404, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9756, "numnum:min:POP2025": 5035, "numnum:sum:POP2025": 14791, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9932, "numnum:min:POP2050": 5151, "numnum:sum:POP2050": 15083, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 43.69998, "numnum:sum:LATITUDE": 89.116677, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -79.420021, "numnum:sum:LONGITUDE": -155.120036, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5213000, "numnum:min:POP_MAX": 1145000, "numnum:sum:POP_MAX": 6358000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3934421, "numnum:min:POP_MIN": 812129, "numnum:sum:POP_MIN": 4746550, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3749229, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 4622010, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 6094817, "numnum:sum:GEONAMEID": 12262682, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3934421, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 4820201, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 4377344, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 5263124, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5190755, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 6076535, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5190755, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 6076535, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5190755, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5190755, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1432, "numnum:min:MIN_AREAKM": 504, "numnum:sum:MIN_AREAKM": 1936, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2286, "numnum:min:MAX_AREAKM": 504, "numnum:sum:MAX_AREAKM": 2790, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 553, "numnum:min:MIN_AREAMI": 195, "numnum:sum:MIN_AREAMI": 748, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 883, "numnum:min:MAX_AREAMI": 195, "numnum:sum:MAX_AREAMI": 1078, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 464, "numnum:min:MIN_PERKM": 442, "numnum:sum:MIN_PERKM": 906, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1161, "numnum:min:MAX_PERKM": 442, "numnum:sum:MAX_PERKM": 1603, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 289, "numnum:min:MIN_PERMI": 274, "numnum:sum:MIN_PERMI": 563, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 721, "numnum:min:MAX_PERMI": 274, "numnum:sum:MAX_PERMI": 995, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -80.008333, "numnum:sum:MIN_BBXMIN": -155.991666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -79.806554, "numnum:sum:MAX_BBXMIN": -155.78988700000003, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -79.130272, "numnum:sum:MIN_BBXMAX": -154.580272, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -78.608333, "numnum:sum:MAX_BBXMAX": -154.058333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 43.141667, "numnum:sum:MIN_BBYMIN": 88.366667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 43.475, "numnum:sum:MAX_BBYMIN": 88.7, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 44.090162, "numnum:sum:MIN_BBYMAX": 89.640162, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 44.125, "numnum:sum:MAX_BBYMAX": 89.675, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -79.464213, "numnum:sum:MEAN_BBXC": -155.18187899999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 43.712937, "numnum:sum:MEAN_BBYC": 89.11818299999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4612191, "numnum:min:GN_POP": 812129, "numnum:sum:GN_POP": 5424320, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 173, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 234, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 14, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 27, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 43.72, "numnum:sum:UN_LAT": 89.09, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -79.41, "numnum:sum:UN_LONG": -155.06, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1068, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 1350, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1365, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 1707, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1744, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 2159, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2093, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 2575, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2535, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 3116, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2770, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 3446, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3008, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 3737, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3355, "numnum:min:POP1985": 803, "numnum:sum:POP1985": 4158, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3807, "numnum:min:POP1990": 918, "numnum:sum:POP1990": 4725, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4197, "numnum:min:POP1995": 988, "numnum:sum:POP1995": 5185, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4607, "numnum:min:POP2000": 1079, "numnum:sum:POP2000": 5686, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5035, "numnum:min:POP2005": 1119, "numnum:sum:POP2005": 6154, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5213, "numnum:min:POP2010": 1145, "numnum:sum:POP2010": 6358, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5447, "numnum:min:POP2015": 1182, "numnum:sum:POP2015": 6629, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5687, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 6919, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5827, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 7101, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5946, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 7261, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 23.131959, "numnum:min:LATITUDE": 17.252034, "numnum:sum:LATITUDE": 40.383993, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -82.364182, "numnum:min:LONGITUDE": -88.767073, "numnum:sum:LONGITUDE": -171.131255, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2174000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 2189220, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 13381, "numnum:sum:POP_MIN": 2004298, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1930305, "numnum:min:POP_OTHER": 15220, "numnum:sum:POP_OTHER": 1945525, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3582672, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 7136150, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1990917, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 2006137, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2051170, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 2066390, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2051170, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 2066390, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2051170, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 2066390, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 323, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 332, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 362, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 371, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 125, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 128, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 143, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 240, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 256, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 286, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 302, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 149, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 159, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 177, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 187, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -82.533333, "numnum:min:MIN_BBXMIN": -88.783333, "numnum:sum:MIN_BBXMIN": -171.316666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -82.533333, "numnum:min:MAX_BBXMIN": -88.783333, "numnum:sum:MAX_BBXMIN": -171.316666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -82.208333, "numnum:min:MIN_BBXMAX": -88.75, "numnum:sum:MIN_BBXMAX": -170.95833299999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -82.208333, "numnum:min:MAX_BBXMAX": -88.75, "numnum:sum:MAX_BBXMAX": -170.95833299999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 22.916667, "numnum:min:MIN_BBYMIN": 17.233333, "numnum:sum:MIN_BBYMIN": 40.15, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 22.975161, "numnum:min:MAX_BBYMIN": 17.233333, "numnum:sum:MAX_BBYMIN": 40.208494, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 23.183333, "numnum:min:MIN_BBYMAX": 17.266667, "numnum:sum:MIN_BBYMAX": 40.45, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 23.183333, "numnum:min:MAX_BBYMAX": 17.266667, "numnum:sum:MAX_BBYMAX": 40.45, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -82.354344, "numnum:min:MEAN_BBXC": -88.767803, "numnum:sum:MEAN_BBXC": -171.12214699999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 23.076845, "numnum:min:MEAN_BBYC": 17.248864, "numnum:sum:MEAN_BBYC": 40.325709, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 13381, "numnum:sum:GN_POP": 2177205, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 5, "numnum:sum:GTOPO30": 68, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 172, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 172, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 23.04, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 23.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -82.41, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1116, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1116, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1289, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1289, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1436, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1436, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1598, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1598, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1779, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1779, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1848, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1848, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1913, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1913, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2005, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2005, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2108, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2108, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2183, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2183, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2187, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2187, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2189, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2174, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2174, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2159, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2159, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2151, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2151, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2150, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2150, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2150, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2150, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 1, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.787611, "numnum:min:LATITUDE": 25.08339, "numnum:sum:LATITUDE": 50.871001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -77.350044, "numnum:min:LONGITUDE": -80.224106, "numnum:sum:LONGITUDE": -157.57415, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 227940, "numnum:sum:POP_MAX": 5812940, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 382894, "numnum:min:POP_MIN": 160966, "numnum:sum:POP_MIN": 543860, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1037811, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1037811, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3571824, "numnum:sum:GEONAMEID": 7735962, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1122682, "numnum:min:MAX_POP10": 160966, "numnum:sum:MAX_POP10": 1283648, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1443206, "numnum:min:MAX_POP20": 160966, "numnum:sum:MAX_POP20": 1604172, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 160966, "numnum:sum:MAX_POP50": 5348715, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5187749, "numnum:min:MAX_POP300": 160966, "numnum:sum:MAX_POP300": 5348715, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5187749, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5187749, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 380, "numnum:min:MIN_AREAKM": 84, "numnum:sum:MIN_AREAKM": 464, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2907, "numnum:min:MAX_AREAKM": 84, "numnum:sum:MAX_AREAKM": 2991, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 147, "numnum:min:MIN_AREAMI": 32, "numnum:sum:MIN_AREAMI": 179, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1122, "numnum:min:MAX_AREAMI": 32, "numnum:sum:MAX_AREAMI": 1154, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 156, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 222, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 999, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 1065, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 97, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 138, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 620, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 661, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -77.4, "numnum:min:MIN_BBXMIN": -80.466667, "numnum:sum:MIN_BBXMIN": -157.866667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -77.4, "numnum:min:MAX_BBXMIN": -80.441667, "numnum:sum:MAX_BBXMIN": -157.841667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -77.258333, "numnum:min:MIN_BBXMAX": -80.175719, "numnum:sum:MIN_BBXMAX": -157.434052, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -77.258333, "numnum:min:MAX_BBXMAX": -80.025, "numnum:sum:MAX_BBXMAX": -157.283333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.55, "numnum:min:MIN_BBYMIN": 25, "numnum:sum:MIN_BBYMIN": 50.55, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.725, "numnum:min:MAX_BBYMIN": 25, "numnum:sum:MAX_BBYMIN": 50.725, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.01406, "numnum:min:MIN_BBYMAX": 25.091667, "numnum:sum:MIN_BBYMAX": 51.105727, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.991667, "numnum:min:MAX_BBYMAX": 25.091667, "numnum:sum:MAX_BBYMAX": 52.083334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -77.335571, "numnum:min:MEAN_BBXC": -80.236416, "numnum:sum:MEAN_BBXC": -157.571987, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.067179, "numnum:min:MEAN_BBYC": 25.04483, "numnum:sum:MEAN_BBYC": 51.112009, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 382894, "numnum:min:GN_POP": 227940, "numnum:sum:GN_POP": 610834, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 2, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 2, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 3, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 5, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 550, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.83, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -80.27, "numnum:sum:UN_LONG": -80.27, "numnum:count:POP1950": 2, "numnum:max:POP1950": 622, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 622, "numnum:count:POP1955": 2, "numnum:max:POP1955": 924, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 924, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1361, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1361, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1709, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1709, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2141, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2141, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2590, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3122, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3521, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3969, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4431, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 4946, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5438, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5585, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5755, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5969, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6141, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6272, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -80.200195, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.749979, "numnum:min:LATITUDE": 14.102045, "numnum:sum:LATITUDE": 93.75157300000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -73.980017, "numnum:min:LONGITUDE": -87.217529, "numnum:sum:LONGITUDE": -238.20696500000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 946000, "numnum:sum:POP_MAX": 24324000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 8008278, "numnum:min:POP_MIN": 552433, "numnum:sum:POP_MIN": 9411559, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9292603, "numnum:min:POP_OTHER": 1014546, "numnum:sum:POP_OTHER": 12483140, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 5128581, "numnum:min:GEONAMEID": 3600949, "numnum:sum:GEONAMEID": 12870493, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 9376946, "numnum:min:MAX_POP10": 1014546, "numnum:sum:MAX_POP10": 12574215, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 11947707, "numnum:min:MAX_POP20": 1014546, "numnum:sum:MAX_POP20": 15202509, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 18788144, "numnum:min:MAX_POP50": 1014546, "numnum:sum:MAX_POP50": 23567075, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 18788144, "numnum:min:MAX_POP300": 1014546, "numnum:sum:MAX_POP300": 25480970, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 18924578, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 24602858, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1137, "numnum:min:MIN_AREAKM": 97, "numnum:sum:MIN_AREAKM": 2348, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 97, "numnum:sum:MAX_AREAKM": 11729, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 439, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 906, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 4528, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 548, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 1111, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 6957, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 341, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 691, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 4322, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -74.75, "numnum:min:MIN_BBXMIN": -87.266667, "numnum:sum:MIN_BBXMIN": -239.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -74.091431, "numnum:min:MAX_BBXMIN": -87.266667, "numnum:sum:MAX_BBXMIN": -238.666431, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -73.574946, "numnum:min:MIN_BBXMAX": -87.141667, "numnum:sum:MIN_BBXMAX": -237.469266, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -72.716667, "numnum:min:MAX_BBXMAX": -87.141667, "numnum:sum:MAX_BBXMAX": -236.258334, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.808333, "numnum:min:MIN_BBYMIN": 14.033333, "numnum:sum:MIN_BBYMIN": 92.508333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 40.566667, "numnum:min:MAX_BBYMIN": 14.033333, "numnum:sum:MAX_BBYMIN": 93.354222, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 41.057237, "numnum:min:MIN_BBYMAX": 14.133333, "numnum:sum:MIN_BBYMAX": 94.43223699999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 41.941667, "numnum:min:MAX_BBYMAX": 14.133333, "numnum:sum:MAX_BBYMAX": 95.60833299999999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -73.815782, "numnum:min:MEAN_BBXC": -87.19911, "numnum:sum:MEAN_BBXC": -238.01756, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.813006, "numnum:min:MEAN_BBYC": 14.083298, "numnum:sum:MEAN_BBYC": 93.903891, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 8008278, "numnum:min:GN_POP": 552433, "numnum:sum:GN_POP": 9411559, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 10, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 17, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 997, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 1010, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 209, "numnum:sum:UN_FID": 1341, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.7, "numnum:min:UN_LAT": 14.09, "numnum:sum:UN_LAT": 93.68, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -73.9, "numnum:min:UN_LONG": -87.2, "numnum:sum:UN_LONG": -238.05, "numnum:count:POP1950": 3, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 73, "numnum:sum:POP1950": 13709, "numnum:count:POP1955": 3, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 96, "numnum:sum:POP1955": 14854, "numnum:count:POP1960": 3, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 128, "numnum:sum:POP1960": 16115, "numnum:count:POP1965": 3, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 169, "numnum:sum:POP1965": 17481, "numnum:count:POP1970": 3, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 223, "numnum:sum:POP1970": 18902, "numnum:count:POP1975": 3, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 292, "numnum:sum:POP1975": 18798, "numnum:count:POP1980": 3, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 371, "numnum:sum:POP1980": 18749, "numnum:count:POP1985": 3, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 471, "numnum:sum:POP1985": 19361, "numnum:count:POP1990": 3, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 578, "numnum:sum:POP1990": 20040, "numnum:count:POP1995": 3, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 677, "numnum:sum:POP1995": 21271, "numnum:count:POP2000": 3, "numnum:max:POP2000": 17846, "numnum:min:POP2000": 793, "numnum:sum:POP2000": 22588, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18732, "numnum:min:POP2005": 901, "numnum:sum:POP2005": 23874, "numnum:count:POP2010": 3, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 946, "numnum:sum:POP2010": 24324, "numnum:count:POP2015": 3, "numnum:max:POP2015": 19441, "numnum:min:POP2015": 1022, "numnum:sum:POP2015": 24927, "numnum:count:POP2020": 3, "numnum:max:POP2020": 19974, "numnum:min:POP2020": 1165, "numnum:sum:POP2020": 25775, "numnum:count:POP2025": 3, "numnum:max:POP2025": 20370, "numnum:min:POP2025": 1317, "numnum:sum:POP2025": 26465, "numnum:count:POP2050": 3, "numnum:max:POP2050": 20628, "numnum:min:POP2050": 1472, "numnum:sum:POP2050": 26989, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 13.710002, "numnum:sum:LATITUDE": 32.251027, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -72.336035, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -161.539076, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1998000, "numnum:min:POP_MAX": 1433000, "numnum:sum:POP_MAX": 3431000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1234742, "numnum:min:POP_MIN": 2807, "numnum:sum:POP_MIN": 1237549, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2385397, "numnum:min:POP_OTHER": 2139587, "numnum:sum:POP_OTHER": 4524984, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 16, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 5409107, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2445384, "numnum:min:MAX_POP10": 2150614, "numnum:sum:MAX_POP10": 4595998, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2445384, "numnum:min:MAX_POP20": 2150614, "numnum:sum:MAX_POP20": 4595998, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2445384, "numnum:min:MAX_POP50": 2150614, "numnum:sum:MAX_POP50": 4595998, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2445384, "numnum:min:MAX_POP300": 2150614, "numnum:sum:MAX_POP300": 4595998, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 374, "numnum:sum:MIN_AREAKM": 753, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 379, "numnum:min:MAX_AREAKM": 374, "numnum:sum:MAX_AREAKM": 753, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 144, "numnum:sum:MIN_AREAMI": 290, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 146, "numnum:min:MAX_AREAMI": 144, "numnum:sum:MAX_AREAMI": 290, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 287, "numnum:sum:MIN_PERKM": 634, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 287, "numnum:sum:MAX_PERKM": 634, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 179, "numnum:sum:MIN_PERMI": 394, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 394, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -72.441667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -161.758334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -72.441667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -161.758334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -72.033333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -161, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -72.033333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -161, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 13.591667, "numnum:sum:MIN_BBYMIN": 32.083334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 13.591667, "numnum:sum:MAX_BBYMIN": 32.083334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 13.9, "numnum:sum:MIN_BBYMAX": 32.566667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 13.9, "numnum:sum:MAX_BBYMAX": 32.566667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -72.222424, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -161.39846599999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 13.738798, "numnum:sum:MEAN_BBYC": 32.308257999999998, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 30, "numnum:min:ADMIN1_COD": 11, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1234742, "numnum:min:GN_POP": 2807, "numnum:sum:GN_POP": 1237549, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 65, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 69, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 208, "numnum:min:UN_FID": 179, "numnum:sum:UN_FID": 387, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 13.7, "numnum:sum:UN_LAT": 32.22, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -72.34, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -161.54000000000003, "numnum:count:POP1950": 2, "numnum:max:POP1950": 194, "numnum:min:POP1950": 133, "numnum:sum:POP1950": 327, "numnum:count:POP1955": 2, "numnum:max:POP1955": 246, "numnum:min:POP1955": 182, "numnum:sum:POP1955": 428, "numnum:count:POP1960": 2, "numnum:max:POP1960": 311, "numnum:min:POP1960": 247, "numnum:sum:POP1960": 558, "numnum:count:POP1965": 2, "numnum:max:POP1965": 394, "numnum:min:POP1965": 337, "numnum:sum:POP1965": 731, "numnum:count:POP1970": 2, "numnum:max:POP1970": 500, "numnum:min:POP1970": 460, "numnum:sum:POP1970": 960, "numnum:count:POP1975": 2, "numnum:max:POP1975": 596, "numnum:min:POP1975": 575, "numnum:sum:POP1975": 1171, "numnum:count:POP1980": 2, "numnum:max:POP1980": 701, "numnum:min:POP1980": 701, "numnum:sum:POP1980": 1402, "numnum:count:POP1985": 2, "numnum:max:POP1985": 881, "numnum:min:POP1985": 825, "numnum:sum:POP1985": 1706, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1134, "numnum:min:POP1990": 970, "numnum:sum:POP1990": 2104, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1427, "numnum:min:POP1995": 1107, "numnum:sum:POP1995": 2534, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1653, "numnum:min:POP2000": 1233, "numnum:sum:POP2000": 2886, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1885, "numnum:min:POP2005": 1374, "numnum:sum:POP2005": 3259, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1998, "numnum:min:POP2010": 1433, "numnum:sum:POP2010": 3431, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2209, "numnum:min:POP2015": 1520, "numnum:sum:POP2015": 3729, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2621, "numnum:min:POP2020": 1649, "numnum:sum:POP2020": 4270, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3012, "numnum:min:POP2025": 1776, "numnum:sum:POP2025": 4788, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3346, "numnum:min:POP2050": 1902, "numnum:sum:POP2050": 5248, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 17.977077, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 34.726518, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -74.083344, "numnum:min:LONGITUDE": -86.268492, "numnum:sum:LONGITUDE": -237.11926999999998, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 920000, "numnum:sum:POP_MAX": 9629700, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 664973, "numnum:sum:POP_MIN": 7918634, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 18171, "numnum:sum:POP_OTHER": 6860449, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3489854, "numnum:sum:GEONAMEID": 10796306, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 664973, "numnum:sum:MAX_POP10": 8104607, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 664973, "numnum:sum:MAX_POP20": 8104100, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 664973, "numnum:sum:MAX_POP50": 8104100, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 664973, "numnum:sum:MAX_POP300": 8104100, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 120, "numnum:sum:MIN_AREAKM": 774, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 120, "numnum:sum:MAX_AREAKM": 774, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 46, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 46, "numnum:sum:MAX_AREAMI": 299, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 186, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 352, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 186, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 352, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 116, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 219, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 116, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 219, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -74.266667, "numnum:min:MIN_BBXMIN": -86.383333, "numnum:sum:MIN_BBXMIN": -237.51666699999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -74.266667, "numnum:min:MAX_BBXMIN": -86.383333, "numnum:sum:MAX_BBXMIN": -237.51666699999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -74.008333, "numnum:min:MIN_BBXMAX": -86.158333, "numnum:sum:MIN_BBXMAX": -236.89999899999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -74.008333, "numnum:min:MAX_BBXMAX": -86.158333, "numnum:sum:MAX_BBXMAX": -236.89999899999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 17.958333, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 34.516666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 17.958333, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 34.516666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 35.058333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 35.058333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -74.116517, "numnum:min:MEAN_BBXC": -86.263402, "numnum:sum:MEAN_BBXC": -237.17796299999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 18.018509, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 34.795096, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 52, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 937700, "numnum:sum:GN_POP": 9013389, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": 54, "numnum:sum:GTOPO30": 2733, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 382, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 543, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 12.15, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 16.78, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -86.27, "numnum:sum:UN_LONG": -160.35, "numnum:count:POP1950": 3, "numnum:max:POP1950": 630, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 740, "numnum:count:POP1955": 3, "numnum:max:POP1955": 894, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1042, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1468, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2049, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2749, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3483, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4050, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4708, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5475, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6359, "numnum:count:POP2000": 3, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7243, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8262, "numnum:count:POP2010": 3, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8692, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9264, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9931, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10403, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10793, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.168226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 37.373102, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -69.900085, "numnum:min:LONGITUDE": -84.084051, "numnum:sum:LONGITUDE": -233.517173, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2154000, "numnum:min:POP_MAX": 1281000, "numnum:sum:POP_MAX": 4719000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 408168, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 412765, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3322037, "numnum:min:POP_OTHER": 939725, "numnum:sum:POP_OTHER": 5696443, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3703443, "numnum:min:GEONAMEID": 3668373, "numnum:sum:GEONAMEID": 11041439, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3334413, "numnum:min:MAX_POP10": 958016, "numnum:sum:MAX_POP10": 5743331, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3334413, "numnum:min:MAX_POP20": 958016, "numnum:sum:MAX_POP20": 6118463, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3334413, "numnum:min:MAX_POP50": 989053, "numnum:sum:MAX_POP50": 6149500, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3334413, "numnum:min:MAX_POP300": 989053, "numnum:sum:MAX_POP300": 6149500, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 451, "numnum:min:MIN_AREAKM": 141, "numnum:sum:MIN_AREAKM": 856, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 451, "numnum:min:MAX_AREAKM": 157, "numnum:sum:MAX_AREAKM": 1039, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 174, "numnum:min:MIN_AREAMI": 54, "numnum:sum:MIN_AREAMI": 330, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 174, "numnum:min:MAX_AREAMI": 61, "numnum:sum:MAX_AREAMI": 401, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 98, "numnum:sum:MIN_PERKM": 543, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 107, "numnum:sum:MAX_PERKM": 686, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 61, "numnum:sum:MIN_PERMI": 337, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 66, "numnum:sum:MAX_PERMI": 426, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -70.208333, "numnum:min:MIN_BBXMIN": -84.366667, "numnum:sum:MIN_BBXMIN": -234.16666700000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -70.208333, "numnum:min:MAX_BBXMIN": -84.166667, "numnum:sum:MAX_BBXMIN": -233.95131499999997, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -69.766667, "numnum:min:MIN_BBXMAX": -83.983333, "numnum:sum:MIN_BBXMAX": -233.14999999999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -69.766667, "numnum:min:MAX_BBXMAX": -83.975, "numnum:sum:MAX_BBXMAX": -233.14166699999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 37.091667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 37.102086, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 37.733334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 37.741667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -69.980546, "numnum:min:MEAN_BBXC": -84.111698, "numnum:sum:MEAN_BBXC": -233.587163, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 37.462379999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 408168, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 412765, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2004, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 3474, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 171, "numnum:sum:UN_FID": 755, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 9, "numnum:sum:UN_LAT": 37.41, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -69.89, "numnum:min:UN_LONG": -84.07, "numnum:sum:UN_LONG": -233.46999999999998, "numnum:count:POP1950": 3, "numnum:max:POP1950": 219, "numnum:min:POP1950": 148, "numnum:sum:POP1950": 538, "numnum:count:POP1955": 3, "numnum:max:POP1955": 312, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 716, "numnum:count:POP1960": 3, "numnum:max:POP1960": 446, "numnum:min:POP1960": 230, "numnum:sum:POP1960": 959, "numnum:count:POP1965": 3, "numnum:max:POP1965": 613, "numnum:min:POP1965": 287, "numnum:sum:POP1965": 1260, "numnum:count:POP1970": 3, "numnum:max:POP1970": 833, "numnum:min:POP1970": 359, "numnum:sum:POP1970": 1647, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1016, "numnum:min:POP1975": 440, "numnum:sum:POP1975": 1984, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1240, "numnum:min:POP1980": 526, "numnum:sum:POP1980": 2379, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1396, "numnum:min:POP1985": 627, "numnum:sum:POP1985": 2744, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1522, "numnum:min:POP1990": 737, "numnum:sum:POP1990": 3106, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1670, "numnum:min:POP1995": 867, "numnum:sum:POP1995": 3490, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1854, "numnum:min:POP2000": 1032, "numnum:sum:POP2000": 3958, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2062, "numnum:min:POP2005": 1216, "numnum:sum:POP2005": 4495, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2154, "numnum:min:POP2010": 1281, "numnum:sum:POP2010": 4719, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2298, "numnum:min:POP2015": 1374, "numnum:sum:POP2015": 5051, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2525, "numnum:min:POP2020": 1506, "numnum:sum:POP2020": 5558, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2722, "numnum:min:POP2025": 1627, "numnum:sum:POP2025": 6002, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2885, "numnum:min:POP2050": 1737, "numnum:sum:POP2050": 6381, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -84.067383, 9.925566 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 17.118037, "numnum:min:LATITUDE": 13.148279, "numnum:sum:LATITUDE": 30.266316000000005, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -61.212062, "numnum:min:LONGITUDE": -61.850034, "numnum:sum:LONGITUDE": -123.062096, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 49485, "numnum:min:POP_MAX": 35499, "numnum:sum:POP_MAX": 84984, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 24518, "numnum:min:POP_MIN": 24226, "numnum:sum:POP_MIN": 48744, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 3576022, "numnum:sum:GEONAMEID": 7936003, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 49485, "numnum:min:MAX_POP10": 35499, "numnum:sum:MAX_POP10": 84984, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 49485, "numnum:min:MAX_POP20": 35499, "numnum:sum:MAX_POP20": 84984, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 49485, "numnum:min:MAX_POP50": 35499, "numnum:sum:MAX_POP50": 84984, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 49485, "numnum:min:MAX_POP300": 35499, "numnum:sum:MAX_POP300": 84984, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 25, "numnum:min:MIN_AREAKM": 17, "numnum:sum:MIN_AREAKM": 42, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 25, "numnum:min:MAX_AREAKM": 17, "numnum:sum:MAX_AREAKM": 42, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 10, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 17, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 10, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 17, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 38, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 69, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 38, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 69, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 24, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 43, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 24, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 43, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -61.241667, "numnum:min:MIN_BBXMIN": -61.858333, "numnum:sum:MIN_BBXMIN": -123.1, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -61.241667, "numnum:min:MAX_BBXMIN": -61.858333, "numnum:sum:MAX_BBXMIN": -123.1, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -61.158333, "numnum:min:MIN_BBXMAX": -61.783333, "numnum:sum:MIN_BBXMAX": -122.941666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -61.158333, "numnum:min:MAX_BBXMAX": -61.783333, "numnum:sum:MAX_BBXMAX": -122.941666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 17.091667, "numnum:min:MIN_BBYMIN": 13.125, "numnum:sum:MIN_BBYMIN": 30.216667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 17.091667, "numnum:min:MAX_BBYMIN": 13.125, "numnum:sum:MAX_BBYMIN": 30.216667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 17.141667, "numnum:min:MIN_BBYMAX": 13.175, "numnum:sum:MIN_BBYMAX": 30.316667000000004, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 17.141667, "numnum:min:MAX_BBYMAX": 13.175, "numnum:sum:MAX_BBYMAX": 30.316667000000004, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -61.202183, "numnum:min:MEAN_BBXC": -61.824059, "numnum:sum:MEAN_BBXC": -123.026242, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 17.120565, "numnum:min:MEAN_BBYC": 13.145833, "numnum:sum:MEAN_BBYC": 30.266398, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 24226, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 25888, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 2, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -61.831055, 17.098792 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 15.301016, "numnum:min:LATITUDE": 14.001973, "numnum:sum:LATITUDE": 29.302989, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -61.387013, "numnum:sum:LONGITUDE": -122.387021, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 37963, "numnum:min:POP_MAX": 23336, "numnum:sum:POP_MAX": 61299, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 16571, "numnum:min:POP_MIN": 10634, "numnum:sum:POP_MIN": 27205, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 23336, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 23336, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 6, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3575635, "numnum:min:GEONAMEID": 3028258, "numnum:sum:GEONAMEID": 6603893, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 64343, "numnum:min:MAX_POP10": 23336, "numnum:sum:MAX_POP10": 87679, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 64343, "numnum:min:MAX_POP20": 23336, "numnum:sum:MAX_POP20": 87679, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 64343, "numnum:min:MAX_POP50": 23336, "numnum:sum:MAX_POP50": 87679, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 64343, "numnum:min:MAX_POP300": 23336, "numnum:sum:MAX_POP300": 87679, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 16, "numnum:min:MIN_AREAKM": 12, "numnum:sum:MIN_AREAKM": 28, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 16, "numnum:min:MAX_AREAKM": 12, "numnum:sum:MAX_AREAKM": 28, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 6, "numnum:min:MIN_AREAMI": 5, "numnum:sum:MIN_AREAMI": 11, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 6, "numnum:min:MAX_AREAMI": 5, "numnum:sum:MAX_AREAMI": 11, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 25, "numnum:min:MIN_PERKM": 22, "numnum:sum:MIN_PERKM": 47, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 25, "numnum:min:MAX_PERKM": 22, "numnum:sum:MAX_PERKM": 47, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 16, "numnum:min:MIN_PERMI": 14, "numnum:sum:MIN_PERMI": 30, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 16, "numnum:min:MAX_PERMI": 14, "numnum:sum:MAX_PERMI": 30, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -61.4, "numnum:sum:MIN_BBXMIN": -122.408333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -61.4, "numnum:sum:MAX_BBXMIN": -122.408333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -61.35, "numnum:sum:MIN_BBXMAX": -122.316667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -61.35, "numnum:sum:MAX_BBXMAX": -122.316667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 15.266667, "numnum:min:MIN_BBYMIN": 13.975, "numnum:sum:MIN_BBYMIN": 29.241667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 15.266667, "numnum:min:MAX_BBYMIN": 13.975, "numnum:sum:MAX_BBYMIN": 29.241667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 15.325, "numnum:min:MIN_BBYMAX": 14.025, "numnum:sum:MIN_BBYMAX": 29.35, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 15.325, "numnum:min:MAX_BBYMAX": 14.025, "numnum:sum:MAX_BBYMAX": 29.35, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -61.3775, "numnum:sum:MEAN_BBXC": -122.365877, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 15.298056, "numnum:min:MEAN_BBYC": 14.005921, "numnum:sum:MEAN_BBYC": 29.303977000000005, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 16571, "numnum:min:GN_POP": 5790, "numnum:sum:GN_POP": 22361, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 47, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9952, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.284185 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.102003, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 19.903977, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -59.616527, "numnum:sum:LONGITUDE": -117.783556, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 264350, "numnum:min:POP_MAX": 191152, "numnum:sum:POP_MAX": 455502, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 235017, "numnum:min:POP_MIN": 96578, "numnum:sum:POP_MIN": 331595, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 264350, "numnum:min:POP_OTHER": 191814, "numnum:sum:POP_OTHER": 456164, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3378644, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 5454451, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 264350, "numnum:min:MAX_POP10": 191152, "numnum:sum:MAX_POP10": 455502, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 264350, "numnum:min:MAX_POP20": 191152, "numnum:sum:MAX_POP20": 455502, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 264350, "numnum:min:MAX_POP50": 191152, "numnum:sum:MAX_POP50": 455502, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 264350, "numnum:min:MAX_POP300": 191152, "numnum:sum:MAX_POP300": 455502, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 106, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 143, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 106, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 143, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 41, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 55, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 41, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 55, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 131, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 175, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 131, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 175, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 109, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 109, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -59.641667, "numnum:sum:MIN_BBXMIN": -117.841667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -59.641667, "numnum:sum:MAX_BBXMIN": -117.841667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -59.5, "numnum:sum:MIN_BBXMAX": -117.616667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -59.5, "numnum:sum:MAX_BBXMAX": -117.616667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.05, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 19.8, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.05, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 19.8, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 20.1, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 20.1, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -59.589731, "numnum:sum:MEAN_BBXC": -117.74351899999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.128773, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 19.926121000000003, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 20, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 235017, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 237988, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 153, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.111580 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 10.651997, "numnum:min:LATITUDE": 10.500999, "numnum:sum:LATITUDE": 21.152996, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -61.517031, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -128.434068, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 294934, "numnum:sum:POP_MAX": 3279934, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 49031, "numnum:sum:POP_MIN": 1864710, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 419082, "numnum:sum:POP_OTHER": 3183637, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": 3573890, "numnum:sum:GEONAMEID": 7220628, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 294934, "numnum:sum:MAX_POP10": 3113434, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 294934, "numnum:sum:MAX_POP20": 3645992, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 294934, "numnum:sum:MAX_POP50": 3646175, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 294934, "numnum:sum:MAX_POP300": 3646175, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 112, "numnum:sum:MIN_AREAKM": 336, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 112, "numnum:sum:MAX_AREAKM": 482, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 129, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 186, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 246, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 387, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 67, "numnum:sum:MIN_PERMI": 152, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 67, "numnum:sum:MAX_PERMI": 239, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -61.533333, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -128.666666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -61.533333, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -128.52639, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -61.25, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -127.975, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -61.25, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -127.975, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 10.583333, "numnum:min:MIN_BBYMIN": 10.325, "numnum:sum:MIN_BBYMIN": 20.908333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 10.583333, "numnum:min:MAX_BBYMIN": 10.408333, "numnum:sum:MAX_BBYMIN": 20.991666000000003, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 10.666667, "numnum:min:MIN_BBYMAX": 10.533671, "numnum:sum:MIN_BBYMAX": 21.200338000000003, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 10.666667, "numnum:min:MAX_BBYMAX": 10.541667, "numnum:sum:MAX_BBYMAX": 21.208334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -61.383365, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -128.301284, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 10.638816, "numnum:min:MEAN_BBYC": 10.451672, "numnum:sum:MEAN_BBYC": 21.090488, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 30, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 49657, "numnum:sum:GN_POP": 1865336, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9079, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 2, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 2, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 27.149982, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 32.985012, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -13.200006, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -68.367037, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 254169, "numnum:min:POP_MAX": 188084, "numnum:sum:POP_MAX": 442253, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 223757, "numnum:min:POP_MIN": 176365, "numnum:sum:POP_MIN": 400122, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 248161, "numnum:min:POP_OTHER": 176365, "numnum:sum:POP_OTHER": 424526, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3383330, "numnum:min:GEONAMEID": 2462881, "numnum:sum:GEONAMEID": 5846211, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 254169, "numnum:min:MAX_POP10": 176365, "numnum:sum:MAX_POP10": 430534, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 254169, "numnum:min:MAX_POP20": 176365, "numnum:sum:MAX_POP20": 430534, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 254169, "numnum:min:MAX_POP50": 176365, "numnum:sum:MAX_POP50": 430534, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 254169, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 254169, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 104, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 125, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 105, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 126, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 40, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 48, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 40, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 48, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 83, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 109, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 85, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 111, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 51, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 67, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 53, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 69, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -13.225, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -68.508333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -13.225, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -68.508333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -13.158333, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -68.265899, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -13.158333, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -68.25833300000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 27.125, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 32.891667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 27.125, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 32.891667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 27.175, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 33.041667000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 27.175, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 33.041667000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -13.194643, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -68.38338, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 27.146131, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 32.972559000000007, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 223757, "numnum:min:GN_POP": 188084, "numnum:sum:GN_POP": 411841, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 72, "numnum:min:GTOPO30": 3, "numnum:sum:GTOPO30": 75, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavík", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suðurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 14.916698, "numnum:sum:LATITUDE": 79.066722, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -21.950014, "numnum:min:LONGITUDE": -23.516689, "numnum:sum:LONGITUDE": -45.466702999999998, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 166212, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 279576, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 113906, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 202765, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 160116, "numnum:min:POP_OTHER": 89205, "numnum:sum:POP_OTHER": 249321, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 3374333, "numnum:sum:GEONAMEID": 6788162, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 166212, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 255071, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 166212, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 255071, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 166212, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 255071, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 166212, "numnum:min:MAX_POP300": 88859, "numnum:sum:MAX_POP300": 255071, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 75, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 112, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 75, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 112, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 29, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 43, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 29, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 43, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 119, "numnum:min:MIN_PERKM": 40, "numnum:sum:MIN_PERKM": 159, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 119, "numnum:min:MAX_PERKM": 40, "numnum:sum:MAX_PERKM": 159, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 74, "numnum:min:MIN_PERMI": 25, "numnum:sum:MIN_PERMI": 99, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 74, "numnum:min:MAX_PERMI": 25, "numnum:sum:MAX_PERMI": 99, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -22.008333, "numnum:min:MIN_BBXMIN": -23.541667, "numnum:sum:MIN_BBXMIN": -45.55, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -22.008333, "numnum:min:MAX_BBXMIN": -23.541667, "numnum:sum:MAX_BBXMIN": -45.55, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -21.75, "numnum:min:MIN_BBXMAX": -23.483333, "numnum:sum:MIN_BBXMAX": -45.233333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -21.75, "numnum:min:MAX_BBXMAX": -23.483333, "numnum:sum:MAX_BBXMAX": -45.233333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 14.9, "numnum:sum:MIN_BBYMIN": 78.95, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 14.9, "numnum:sum:MAX_BBYMIN": 78.95, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 14.983333, "numnum:sum:MIN_BBYMAX": 79.15, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 14.983333, "numnum:sum:MAX_BBYMAX": 79.15, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -21.8825, "numnum:min:MEAN_BBXC": -23.514907, "numnum:sum:MEAN_BBXC": -45.397407, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 14.938056, "numnum:sum:MEAN_BBYC": 79.054181, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 113906, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 227270, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9983, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -21.928711, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 1000, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 53.333061, "numnum:min:LATITUDE": 38.722723, "numnum:sum:LATITUDE": 143.555779, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -9.144866, "numnum:sum:LONGITUDE": -15.510494000000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 1059000, "numnum:sum:POP_MAX": 12438000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 517802, "numnum:sum:POP_MIN": 8907987, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1795582, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 2144730, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2964574, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 7875374, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 968976, "numnum:sum:MAX_POP10": 10522574, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 968976, "numnum:sum:MAX_POP20": 11171475, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 968976, "numnum:sum:MAX_POP50": 12812448, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 968976, "numnum:sum:MAX_POP300": 12812448, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10980527, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 351, "numnum:sum:MIN_AREAKM": 2771, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 351, "numnum:sum:MAX_AREAKM": 4057, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 135, "numnum:sum:MIN_AREAMI": 1070, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 135, "numnum:sum:MAX_AREAMI": 1566, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 250, "numnum:sum:MIN_PERKM": 1599, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 250, "numnum:sum:MAX_PERKM": 3050, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 155, "numnum:sum:MIN_PERMI": 994, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 155, "numnum:sum:MAX_PERMI": 1895, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -9.466667, "numnum:sum:MIN_BBXMIN": -17.091667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -9.466667, "numnum:sum:MAX_BBXMIN": -16.546865999999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -8.958333, "numnum:sum:MIN_BBXMAX": -14.692892, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -8.958333, "numnum:sum:MAX_BBXMAX": -14.183333000000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 53.175, "numnum:min:MIN_BBYMIN": 38.675, "numnum:sum:MIN_BBYMIN": 142.98333300000003, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 53.175, "numnum:min:MAX_BBYMIN": 38.675, "numnum:sum:MAX_BBYMIN": 143.058333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 53.433333, "numnum:min:MIN_BBYMAX": 39.008333, "numnum:sum:MIN_BBYMAX": 144.266666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 53.433333, "numnum:min:MAX_BBYMAX": 39.008333, "numnum:sum:MAX_BBYMAX": 144.266666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -9.232769, "numnum:sum:MEAN_BBXC": -15.681403, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 53.329717, "numnum:min:MEAN_BBYC": 38.783256, "numnum:sum:MEAN_BBYC": 143.602597, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 517802, "numnum:sum:GN_POP": 8963038, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 86, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 302, "numnum:sum:UN_FID": 1240, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 38.72, "numnum:sum:UN_LAT": 143.54, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -0.17, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -15.54, "numnum:count:POP1950": 3, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 626, "numnum:sum:POP1950": 10291, "numnum:count:POP1955": 3, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 647, "numnum:sum:POP1955": 10330, "numnum:count:POP1960": 3, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 661, "numnum:sum:POP1960": 10371, "numnum:count:POP1965": 3, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 723, "numnum:sum:POP1965": 10249, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 771, "numnum:sum:POP1970": 10097, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 833, "numnum:sum:POP1975": 10482, "numnum:count:POP1980": 3, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 903, "numnum:sum:POP1980": 11012, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 920, "numnum:sum:POP1985": 11105, "numnum:count:POP1990": 3, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 916, "numnum:sum:POP1990": 11107, "numnum:count:POP1995": 3, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 946, "numnum:sum:POP1995": 11454, "numnum:count:POP2000": 3, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 989, "numnum:sum:POP2000": 11886, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 1037, "numnum:sum:POP2005": 12304, "numnum:count:POP2010": 3, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 1059, "numnum:sum:POP2010": 12438, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 1098, "numnum:sum:POP2015": 12595, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 1177, "numnum:sum:POP2020": 12791, "numnum:count:POP2025": 3, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 1257, "numnum:sum:POP2025": 12933, "numnum:count:POP2050": 3, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 1332, "numnum:sum:POP2050": 13036, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.599976, "numnum:min:LATITUDE": 18.086427, "numnum:sum:LATITUDE": 51.686403, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -7.616367, "numnum:min:LONGITUDE": -15.97534, "numnum:sum:LONGITUDE": -23.591707, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 742144, "numnum:sum:POP_MAX": 3923144, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 661400, "numnum:sum:POP_MIN": 3806309, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 742144, "numnum:sum:POP_OTHER": 4460941, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2553604, "numnum:min:GEONAMEID": 2377450, "numnum:sum:GEONAMEID": 4931054, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 742144, "numnum:sum:MAX_POP10": 4538423, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 742144, "numnum:sum:MAX_POP20": 4538423, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 742144, "numnum:sum:MAX_POP50": 4538423, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 742144, "numnum:sum:MAX_POP300": 4538423, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 436, "numnum:min:MIN_AREAKM": 98, "numnum:sum:MIN_AREAKM": 534, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 436, "numnum:min:MAX_AREAKM": 98, "numnum:sum:MAX_AREAKM": 534, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 168, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 206, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 168, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 206, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 261, "numnum:min:MIN_PERKM": 92, "numnum:sum:MIN_PERKM": 353, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 261, "numnum:min:MAX_PERKM": 92, "numnum:sum:MAX_PERKM": 353, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 162, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 219, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 162, "numnum:min:MAX_PERMI": 57, "numnum:sum:MAX_PERMI": 219, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -7.7, "numnum:min:MIN_BBXMIN": -16.016667, "numnum:sum:MIN_BBXMIN": -23.716667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -7.7, "numnum:min:MAX_BBXMIN": -16.016667, "numnum:sum:MAX_BBXMIN": -23.716667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -7.325, "numnum:min:MIN_BBXMAX": -15.891667, "numnum:sum:MIN_BBXMAX": -23.216667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -7.325, "numnum:min:MAX_BBXMAX": -15.891667, "numnum:sum:MAX_BBXMAX": -23.216667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.391667, "numnum:min:MIN_BBYMIN": 18.033333, "numnum:sum:MIN_BBYMIN": 51.425, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.391667, "numnum:min:MAX_BBYMIN": 18.033333, "numnum:sum:MAX_BBYMIN": 51.425, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.733333, "numnum:min:MIN_BBYMAX": 18.15, "numnum:sum:MIN_BBYMAX": 51.883333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 33.733333, "numnum:min:MAX_BBYMAX": 18.15, "numnum:sum:MAX_BBYMAX": 51.883333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -7.518511, "numnum:min:MEAN_BBXC": -15.960139, "numnum:sum:MEAN_BBXC": -23.478650000000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.557664, "numnum:min:MEAN_BBYC": 18.092569, "numnum:sum:MEAN_BBYC": 51.650233, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 45, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 661400, "numnum:sum:GN_POP": 3806309, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 17, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9982, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 372, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 372, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.6, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.6, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -7.63, "numnum:sum:UN_LONG": -7.63, "numnum:count:POP1950": 2, "numnum:max:POP1950": 625, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 625, "numnum:count:POP1955": 2, "numnum:max:POP1955": 778, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 778, "numnum:count:POP1960": 2, "numnum:max:POP1960": 967, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 967, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1206, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1206, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1505, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1505, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1793, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1793, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2109, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2109, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2406, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2406, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2682, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2682, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2951, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3043, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3138, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3181, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3267, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3475, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3716, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3949, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salé - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 34.025299, "numnum:min:LATITUDE": 11.865024, "numnum:sum:LATITUDE": 60.606154999999997, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.836131, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -39.907622, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 403339, "numnum:sum:POP_MAX": 4712339, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 388028, "numnum:sum:POP_MIN": 4520181, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 403339, "numnum:sum:POP_OTHER": 4902828, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2538475, "numnum:min:GEONAMEID": 2253354, "numnum:sum:GEONAMEID": 7166604, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 403339, "numnum:sum:MAX_POP10": 5075702, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 403339, "numnum:sum:MAX_POP20": 5075345, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 403339, "numnum:sum:MAX_POP50": 5101077, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 403339, "numnum:sum:MAX_POP300": 5101077, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 428, "numnum:min:MIN_AREAKM": 70, "numnum:sum:MIN_AREAKM": 755, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 428, "numnum:min:MAX_AREAKM": 70, "numnum:sum:MAX_AREAKM": 800, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 165, "numnum:min:MIN_AREAMI": 27, "numnum:sum:MIN_AREAMI": 291, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 165, "numnum:min:MAX_AREAMI": 27, "numnum:sum:MAX_AREAMI": 309, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 763, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 829, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 474, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 515, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -7.116667, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -40.308333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -7.116667, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -40.308333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.725, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -39.483332999999998, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.725, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -39.408333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 33.741667, "numnum:min:MIN_BBYMIN": 11.808333, "numnum:sum:MIN_BBYMIN": 60.199999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 33.741667, "numnum:min:MAX_BBYMIN": 11.808333, "numnum:sum:MAX_BBYMIN": 60.199999999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 34.125, "numnum:min:MIN_BBYMAX": 11.933333, "numnum:sum:MIN_BBYMAX": 60.883333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 34.125, "numnum:min:MAX_BBYMAX": 11.933333, "numnum:sum:MAX_BBYMAX": 60.883333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.87491, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -39.831387, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 33.912847, "numnum:min:MEAN_BBYC": 11.871032, "numnum:sum:MEAN_BBYC": 60.526707, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 61, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 388028, "numnum:sum:GN_POP": 4520181, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 54, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9931, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 822, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 34.01, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.69, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -24.28, "numnum:count:POP1950": 3, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 356, "numnum:count:POP1955": 3, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 419, "numnum:count:POP1960": 3, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 592, "numnum:count:POP1965": 3, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 812, "numnum:count:POP1970": 3, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1104, "numnum:count:POP1975": 3, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1423, "numnum:count:POP1980": 3, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1765, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2148, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2579, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3067, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3536, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4081, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4309, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4649, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5213, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5809, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6447, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -6.811523, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 380, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.400026, "numnum:min:LATITUDE": 13.453876, "numnum:sum:LATITUDE": 79.973069, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -3.683352, "numnum:min:LONGITUDE": -16.591701, "numnum:sum:LONGITUDE": -29.927575, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5567000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 5610594, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 50437, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 85226, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3673427, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4254727, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 16, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 6089582, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3767139, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 3810233, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3767139, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 3810233, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3767139, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3810233, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3767139, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3810233, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3767139, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3767139, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 690, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 697, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 690, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 697, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 266, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 269, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 266, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 269, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 558, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 571, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 571, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 347, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 355, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 355, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -16.6, "numnum:sum:MIN_BBXMIN": -20.625, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -16.6, "numnum:sum:MAX_BBXMIN": -20.625, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -16.566667, "numnum:sum:MIN_BBXMAX": -20, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -16.566667, "numnum:sum:MAX_BBXMAX": -20, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 40.225, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 53.666667000000007, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 40.225, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 53.666667000000007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.616667, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 54.083334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.616667, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 54.083334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -16.58125, "numnum:sum:MEAN_BBXC": -20.330649, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.425498, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 53.880705999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 33, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 50437, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 85026, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 2405, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 464, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 464, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.44, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 40.44, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -3.69, "numnum:sum:UN_LONG": -3.69, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1700, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1700, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2018, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2018, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2392, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2392, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2898, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2898, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3521, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3521, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3890, "numnum:count:POP1980": 3, "numnum:max:POP1980": 4253, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4253, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4355, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4355, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4414, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4414, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4701, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4701, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5045, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5045, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5414, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5414, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5567, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5764, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5764, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5918, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5918, "numnum:count:POP2025": 3, "numnum:max:POP2025": 5934, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5934, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5935, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5935, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 8.470011, "numnum:min:LATITUDE": 6.310557, "numnum:sum:LATITUDE": 14.780567999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -10.804752, "numnum:min:LONGITUDE": -13.234216, "numnum:sum:LONGITUDE": -24.038968, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1041000, "numnum:min:POP_MAX": 827000, "numnum:sum:POP_MAX": 1868000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 785662, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 799430, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1074640, "numnum:min:POP_OTHER": 806416, "numnum:sum:POP_OTHER": 1881056, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2408770, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 4683665, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1074311, "numnum:min:MAX_POP10": 785662, "numnum:sum:MAX_POP10": 1859973, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1074311, "numnum:min:MAX_POP20": 781295, "numnum:sum:MAX_POP20": 1855606, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1074311, "numnum:min:MAX_POP50": 781295, "numnum:sum:MAX_POP50": 1855606, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1074311, "numnum:min:MAX_POP300": 781295, "numnum:sum:MAX_POP300": 1855606, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 141, "numnum:min:MIN_AREAKM": 77, "numnum:sum:MIN_AREAKM": 218, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 152, "numnum:min:MAX_AREAKM": 77, "numnum:sum:MAX_AREAKM": 229, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 54, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 84, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 59, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 89, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 164, "numnum:min:MIN_PERKM": 81, "numnum:sum:MIN_PERKM": 245, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 81, "numnum:sum:MAX_PERKM": 265, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 102, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 152, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 115, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 165, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -10.816667, "numnum:min:MIN_BBXMIN": -13.3, "numnum:sum:MIN_BBXMIN": -24.116667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -10.816667, "numnum:min:MAX_BBXMIN": -13.3, "numnum:sum:MAX_BBXMIN": -24.116667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -10.658333, "numnum:min:MIN_BBXMAX": -13.15, "numnum:sum:MIN_BBXMAX": -23.808333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -10.658333, "numnum:min:MAX_BBXMAX": -13.15, "numnum:sum:MAX_BBXMAX": -23.808333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 8.408333, "numnum:min:MIN_BBYMIN": 6.225, "numnum:sum:MIN_BBYMIN": 14.633333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 8.408333, "numnum:min:MAX_BBYMIN": 6.225, "numnum:sum:MAX_BBYMIN": 14.633333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 8.5, "numnum:min:MIN_BBYMAX": 6.4, "numnum:sum:MIN_BBYMAX": 14.9, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 8.5, "numnum:min:MAX_BBYMAX": 6.4, "numnum:sum:MAX_BBYMAX": 14.9, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -10.734923, "numnum:min:MEAN_BBXC": -13.230082, "numnum:sum:MEAN_BBXC": -23.965004999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 8.462592, "numnum:min:MEAN_BBYC": 6.317829, "numnum:sum:MEAN_BBYC": 14.780421, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 18, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 939524, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 953292, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 30, "numnum:min:GTOPO30": 15, "numnum:sum:GTOPO30": 45, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 449, "numnum:min:UN_FID": 342, "numnum:sum:UN_FID": 791, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 8.48, "numnum:min:UN_LAT": 6.3, "numnum:sum:UN_LAT": 14.780000000000002, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -10.79, "numnum:min:UN_LONG": -13.23, "numnum:sum:UN_LONG": -24.02, "numnum:count:POP1950": 2, "numnum:max:POP1950": 92, "numnum:min:POP1950": 15, "numnum:sum:POP1950": 107, "numnum:count:POP1955": 2, "numnum:max:POP1955": 104, "numnum:min:POP1955": 34, "numnum:sum:POP1955": 138, "numnum:count:POP1960": 2, "numnum:max:POP1960": 119, "numnum:min:POP1960": 75, "numnum:sum:POP1960": 194, "numnum:count:POP1965": 2, "numnum:max:POP1965": 148, "numnum:min:POP1965": 121, "numnum:sum:POP1965": 269, "numnum:count:POP1970": 2, "numnum:max:POP1970": 206, "numnum:min:POP1970": 164, "numnum:sum:POP1970": 370, "numnum:count:POP1975": 2, "numnum:max:POP1975": 284, "numnum:min:POP1975": 226, "numnum:sum:POP1975": 510, "numnum:count:POP1980": 2, "numnum:max:POP1980": 361, "numnum:min:POP1980": 325, "numnum:sum:POP1980": 686, "numnum:count:POP1985": 2, "numnum:max:POP1985": 514, "numnum:min:POP1985": 460, "numnum:sum:POP1985": 974, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1042, "numnum:min:POP1990": 529, "numnum:sum:POP1990": 1571, "numnum:count:POP1995": 2, "numnum:max:POP1995": 603, "numnum:min:POP1995": 464, "numnum:sum:POP1995": 1067, "numnum:count:POP2000": 2, "numnum:max:POP2000": 836, "numnum:min:POP2000": 688, "numnum:sum:POP2000": 1524, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1140, "numnum:min:POP2005": 785, "numnum:sum:POP2005": 1925, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1041, "numnum:min:POP2010": 827, "numnum:sum:POP2010": 1868, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1185, "numnum:min:POP2015": 894, "numnum:sum:POP2015": 2079, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1457, "numnum:min:POP2020": 1029, "numnum:sum:POP2020": 2486, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1753, "numnum:min:POP2025": 1200, "numnum:sum:POP2025": 2953, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2083, "numnum:min:POP2050": 1406, "numnum:sum:POP2050": 3489, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.450639 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 12.650015, "numnum:min:LATITUDE": 12.370316, "numnum:sum:LATITUDE": 25.020331, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -8.000039, "numnum:sum:LONGITUDE": -9.524763, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 1149000, "numnum:sum:POP_MAX": 2643000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1297281, "numnum:min:POP_MIN": 835457, "numnum:sum:POP_MIN": 2132738, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1301407, "numnum:min:POP_OTHER": 713874, "numnum:sum:POP_OTHER": 2015281, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2460596, "numnum:min:GEONAMEID": 2357048, "numnum:sum:GEONAMEID": 4817644, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1316564, "numnum:min:MAX_POP10": 835457, "numnum:sum:MAX_POP10": 2152021, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1316564, "numnum:min:MAX_POP20": 835457, "numnum:sum:MAX_POP20": 2152021, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1316564, "numnum:min:MAX_POP50": 835457, "numnum:sum:MAX_POP50": 2152021, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1316564, "numnum:min:MAX_POP300": 835457, "numnum:sum:MAX_POP300": 2152021, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 236, "numnum:min:MIN_AREAKM": 172, "numnum:sum:MIN_AREAKM": 408, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 236, "numnum:min:MAX_AREAKM": 172, "numnum:sum:MAX_AREAKM": 408, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 91, "numnum:min:MIN_AREAMI": 66, "numnum:sum:MIN_AREAMI": 157, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 91, "numnum:min:MAX_AREAMI": 66, "numnum:sum:MAX_AREAMI": 157, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 133, "numnum:min:MIN_PERKM": 106, "numnum:sum:MIN_PERKM": 239, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 133, "numnum:min:MAX_PERKM": 106, "numnum:sum:MAX_PERKM": 239, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 83, "numnum:min:MIN_PERMI": 66, "numnum:sum:MIN_PERMI": 149, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 83, "numnum:min:MAX_PERMI": 66, "numnum:sum:MAX_PERMI": 149, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -8.058333, "numnum:sum:MIN_BBXMIN": -9.674999999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -8.058333, "numnum:sum:MAX_BBXMIN": -9.674999999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -7.908333, "numnum:sum:MIN_BBXMAX": -9.341666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -7.908333, "numnum:sum:MAX_BBXMAX": -9.341666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 12.541667, "numnum:min:MIN_BBYMIN": 12.275, "numnum:sum:MIN_BBYMIN": 24.816667000000004, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 12.541667, "numnum:min:MAX_BBYMIN": 12.275, "numnum:sum:MAX_BBYMIN": 24.816667000000004, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 12.716667, "numnum:min:MIN_BBYMAX": 12.483333, "numnum:sum:MIN_BBYMAX": 25.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 12.716667, "numnum:min:MAX_BBYMAX": 12.483333, "numnum:sum:MAX_BBYMAX": 25.2, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -7.987419, "numnum:sum:MEAN_BBXC": -9.509165, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 12.626173, "numnum:min:MEAN_BBYC": 12.365975, "numnum:sum:MEAN_BBYC": 24.992148, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 54, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1297281, "numnum:min:GN_POP": 1086505, "numnum:sum:GN_POP": 2383786, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 350, "numnum:min:GTOPO30": 307, "numnum:sum:GTOPO30": 657, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 349, "numnum:sum:UN_FID": 927, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 12.48, "numnum:sum:UN_LAT": 25.130000000000004, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -1.67, "numnum:min:UN_LONG": -7.98, "numnum:sum:UN_LONG": -9.65, "numnum:count:POP1950": 2, "numnum:max:POP1950": 89, "numnum:min:POP1950": 33, "numnum:sum:POP1950": 122, "numnum:count:POP1955": 2, "numnum:max:POP1955": 111, "numnum:min:POP1955": 46, "numnum:sum:POP1955": 157, "numnum:count:POP1960": 2, "numnum:max:POP1960": 130, "numnum:min:POP1960": 59, "numnum:sum:POP1960": 189, "numnum:count:POP1965": 2, "numnum:max:POP1965": 158, "numnum:min:POP1965": 82, "numnum:sum:POP1965": 240, "numnum:count:POP1970": 2, "numnum:max:POP1970": 222, "numnum:min:POP1970": 111, "numnum:sum:POP1970": 333, "numnum:count:POP1975": 2, "numnum:max:POP1975": 363, "numnum:min:POP1975": 149, "numnum:sum:POP1975": 512, "numnum:count:POP1980": 2, "numnum:max:POP1980": 489, "numnum:min:POP1980": 257, "numnum:sum:POP1980": 746, "numnum:count:POP1985": 2, "numnum:max:POP1985": 608, "numnum:min:POP1985": 424, "numnum:sum:POP1985": 1032, "numnum:count:POP1990": 2, "numnum:max:POP1990": 746, "numnum:min:POP1990": 537, "numnum:sum:POP1990": 1283, "numnum:count:POP1995": 2, "numnum:max:POP1995": 910, "numnum:min:POP1995": 667, "numnum:sum:POP1995": 1577, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1110, "numnum:min:POP2000": 828, "numnum:sum:POP2000": 1938, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1368, "numnum:min:POP2005": 1044, "numnum:sum:POP2005": 2412, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 1149, "numnum:sum:POP2010": 2643, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1708, "numnum:min:POP2015": 1324, "numnum:sum:POP2015": 3032, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2130, "numnum:min:POP2020": 1676, "numnum:sum:POP2020": 3806, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2633, "numnum:min:POP2025": 2111, "numnum:sum:POP2025": 4744, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3214, "numnum:min:POP2050": 2632, "numnum:sum:POP2050": 5846, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.528511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -8.838286, "numnum:sum:LATITUDE": -10.791876, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 30.060532, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 43.294959, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5172900, "numnum:min:POP_MAX": 860000, "numnum:sum:POP_MAX": 6032900, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1951272, "numnum:min:POP_MIN": 745261, "numnum:sum:POP_MIN": 2696533, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1951272, "numnum:min:POP_OTHER": 1152904, "numnum:sum:POP_OTHER": 3104176, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2240449, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 2442510, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1951272, "numnum:min:MAX_POP10": 1046787, "numnum:sum:MAX_POP10": 2998059, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2263899, "numnum:min:MAX_POP20": 1951272, "numnum:sum:MAX_POP20": 4215171, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 1951272, "numnum:sum:MAX_POP50": 7016925, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 1951272, "numnum:sum:MAX_POP300": 9053663, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 237, "numnum:sum:MIN_AREAKM": 838, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 237, "numnum:sum:MAX_AREAKM": 8990, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 91, "numnum:sum:MIN_AREAMI": 323, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 91, "numnum:sum:MAX_AREAMI": 3471, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 884, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 9333, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 550, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 5800, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 29.166667, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 42.333334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 29.833333, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 43, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 30.233333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 43.633333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 30.475, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 43.875, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -8.933333, "numnum:sum:MIN_BBYMIN": -11.924999999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -8.933333, "numnum:sum:MAX_BBYMIN": -11.008333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -8.766667, "numnum:sum:MIN_BBYMAX": -10.533297, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -8.766667, "numnum:sum:MAX_BBYMAX": -9.841667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 29.913775, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 43.196305, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -8.851964, "numnum:sum:MEAN_BBYC": -10.886391, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2776168, "numnum:min:GN_POP": 745261, "numnum:sum:GN_POP": 3521429, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1568, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 1574, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 439, "numnum:min:UN_FID": 182, "numnum:sum:UN_FID": 621, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -1.95, "numnum:min:UN_LAT": -8.81, "numnum:sum:UN_LAT": -10.76, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 43.28, "numnum:count:POP1950": 2, "numnum:max:POP1950": 138, "numnum:min:POP1950": 18, "numnum:sum:POP1950": 156, "numnum:count:POP1955": 2, "numnum:max:POP1955": 174, "numnum:min:POP1955": 25, "numnum:sum:POP1955": 199, "numnum:count:POP1960": 2, "numnum:max:POP1960": 219, "numnum:min:POP1960": 34, "numnum:sum:POP1960": 253, "numnum:count:POP1965": 2, "numnum:max:POP1965": 315, "numnum:min:POP1965": 45, "numnum:sum:POP1965": 360, "numnum:count:POP1970": 2, "numnum:max:POP1970": 459, "numnum:min:POP1970": 59, "numnum:sum:POP1970": 518, "numnum:count:POP1975": 2, "numnum:max:POP1975": 665, "numnum:min:POP1975": 90, "numnum:sum:POP1975": 755, "numnum:count:POP1980": 2, "numnum:max:POP1980": 962, "numnum:min:POP1980": 128, "numnum:sum:POP1980": 1090, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1295, "numnum:min:POP1985": 168, "numnum:sum:POP1985": 1463, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1568, "numnum:min:POP1990": 219, "numnum:sum:POP1990": 1787, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1953, "numnum:min:POP1995": 289, "numnum:sum:POP1995": 2242, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2591, "numnum:min:POP2000": 497, "numnum:sum:POP2000": 3088, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3533, "numnum:min:POP2005": 775, "numnum:sum:POP2005": 4308, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4000, "numnum:min:POP2010": 860, "numnum:sum:POP2010": 4860, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4775, "numnum:min:POP2015": 947, "numnum:sum:POP2015": 5722, "numnum:count:POP2020": 2, "numnum:max:POP2020": 6036, "numnum:min:POP2020": 1152, "numnum:sum:POP2020": 7188, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7153, "numnum:min:POP2025": 1413, "numnum:sum:POP2025": 8566, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8236, "numnum:min:POP2050": 1715, "numnum:sum:POP2050": 9951, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -22.570006, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -56.490017, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 18.434988, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 35.518534, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 268132, "numnum:sum:POP_MAX": 3483132, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 262796, "numnum:sum:POP_MIN": 2695654, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 262796, "numnum:sum:POP_OTHER": 2664114, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 3352136, "numnum:sum:GEONAMEID": 6721293, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 262796, "numnum:sum:MAX_POP10": 2695654, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 262796, "numnum:sum:MAX_POP20": 2706401, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2443605, "numnum:min:MAX_POP50": 262796, "numnum:sum:MAX_POP50": 2706401, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2443605, "numnum:min:MAX_POP300": 262796, "numnum:sum:MAX_POP300": 2706401, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 534, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 623, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 542, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 631, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 206, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 241, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 209, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 244, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 295, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 355, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 300, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 360, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 183, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 220, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 187, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 224, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 18.375, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 35.383333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 18.375, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 35.383333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 18.724745, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 35.841412, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 18.741667, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 35.858334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -22.625, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -56.733333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -22.625, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -56.733333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -22.491667, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -56.3, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -22.491667, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -56.3, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 18.557208, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 35.621404, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -22.551143, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -56.506122000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 11, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 268132, "numnum:sum:GN_POP": 3701573, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 1729, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 455, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -33.97, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 18.48, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 18.48, "numnum:count:POP1950": 2, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 618, "numnum:count:POP1955": 2, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 705, "numnum:count:POP1960": 2, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 803, "numnum:count:POP1965": 2, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 945, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1114, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1339, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1609, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1925, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2155, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2394, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2715, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3087, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3215, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3357, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3504, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3627, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3744, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -3.376087, "numnum:min:LATITUDE": -6.800013, "numnum:sum:LATITUDE": -10.1761, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 29.360006, "numnum:sum:LONGITUDE": 68.62834799999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2930000, "numnum:min:POP_MAX": 331700, "numnum:sum:POP_MAX": 3261700, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2698652, "numnum:min:POP_MIN": 331700, "numnum:sum:POP_MIN": 3030352, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2757835, "numnum:min:POP_OTHER": 1208361, "numnum:sum:POP_OTHER": 3966196, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 425378, "numnum:min:GEONAMEID": 160263, "numnum:sum:GEONAMEID": 585641, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2757507, "numnum:min:MAX_POP10": 1123733, "numnum:sum:MAX_POP10": 3881240, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2757507, "numnum:min:MAX_POP20": 2140496, "numnum:sum:MAX_POP20": 4898003, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 2757507, "numnum:sum:MAX_POP50": 6294421, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 2757507, "numnum:sum:MAX_POP300": 6296658, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 211, "numnum:sum:MIN_AREAKM": 1304, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 211, "numnum:sum:MAX_AREAKM": 5774, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 81, "numnum:sum:MIN_AREAMI": 503, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 81, "numnum:sum:MAX_AREAMI": 2229, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 153, "numnum:sum:MIN_PERKM": 1333, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 153, "numnum:sum:MAX_PERKM": 5234, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 95, "numnum:sum:MIN_PERMI": 828, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 95, "numnum:sum:MAX_PERMI": 3252, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 29.254336, "numnum:sum:MIN_BBXMIN": 68.404336, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 29.258333, "numnum:sum:MAX_BBXMIN": 68.408333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 29.64063, "numnum:sum:MIN_BBXMAX": 68.96563, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 30.272423, "numnum:sum:MAX_BBXMAX": 69.597423, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -3.841667, "numnum:min:MIN_BBYMIN": -6.933333, "numnum:sum:MIN_BBYMIN": -10.775, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -3.675, "numnum:min:MAX_BBYMIN": -6.933333, "numnum:sum:MAX_BBYMIN": -10.608333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -2.95, "numnum:min:MIN_BBYMAX": -6.725, "numnum:sum:MIN_BBYMAX": -9.675, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -2.544862, "numnum:min:MAX_BBYMAX": -6.725, "numnum:sum:MAX_BBYMAX": -9.269862, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 29.649864, "numnum:sum:MEAN_BBXC": 68.889044, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -3.227847, "numnum:min:MEAN_BBYC": -6.833434, "numnum:sum:MEAN_BBYC": -10.061281, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 25, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2698652, "numnum:min:GN_POP": 331700, "numnum:sum:GN_POP": 3030352, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 795, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9204, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 523, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 523, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -6.81, "numnum:sum:UN_LAT": -6.81, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 39.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 67, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 67, "numnum:count:POP1955": 2, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 2, "numnum:max:POP1960": 162, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 162, "numnum:count:POP1965": 2, "numnum:max:POP1965": 233, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 233, "numnum:count:POP1970": 2, "numnum:max:POP1970": 357, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 357, "numnum:count:POP1975": 2, "numnum:max:POP1975": 572, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 572, "numnum:count:POP1980": 2, "numnum:max:POP1980": 836, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 836, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1046, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1046, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1316, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1316, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1668, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1668, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2116, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2116, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2679, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2679, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2930, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2930, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3319, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3319, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4020, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4020, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4804, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4804, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5688, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5688, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -6.183306, "numnum:min:LATITUDE": -15.416644, "numnum:sum:LATITUDE": -21.59995, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 35.750004, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 64.033332, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1328000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 1546269, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1267440, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 1447981, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1240558, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1240558, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 1069333, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1289566, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 1507835, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1289566, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 1507835, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1289566, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 1507835, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1289566, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1289566, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 183, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 238, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 183, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 238, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 71, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 92, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 71, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 92, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 122, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 183, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 122, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 183, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 76, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 114, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 76, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 114, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 35.691667, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 63.916667000000007, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 35.691667, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 63.916667000000007, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 35.808333, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 64.225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 35.808333, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 64.225, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -6.208333, "numnum:min:MIN_BBYMIN": -15.483333, "numnum:sum:MIN_BBYMIN": -21.691665999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -6.208333, "numnum:min:MAX_BBYMIN": -15.483333, "numnum:sum:MAX_BBYMIN": -21.691665999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -6.116667, "numnum:min:MIN_BBYMAX": -15.333333, "numnum:sum:MIN_BBYMAX": -21.45, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -6.116667, "numnum:min:MAX_BBYMAX": -15.333333, "numnum:sum:MAX_BBYMAX": -21.45, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 35.7475, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 64.056096, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -6.162244, "numnum:min:MEAN_BBYC": -15.403941, "numnum:sum:MEAN_BBYC": -21.566185, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1267440, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 1447981, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1277, "numnum:min:GTOPO30": 1129, "numnum:sum:GTOPO30": 2406, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 589, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -15.42, "numnum:sum:UN_LAT": -15.42, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 28.17, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.17, "numnum:count:POP1950": 2, "numnum:max:POP1950": 31, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 31, "numnum:count:POP1955": 2, "numnum:max:POP1955": 53, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 53, "numnum:count:POP1960": 2, "numnum:max:POP1960": 91, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 91, "numnum:count:POP1965": 2, "numnum:max:POP1965": 160, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 160, "numnum:count:POP1970": 2, "numnum:max:POP1970": 278, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 278, "numnum:count:POP1975": 2, "numnum:max:POP1975": 385, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 385, "numnum:count:POP1980": 2, "numnum:max:POP1980": 533, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 533, "numnum:count:POP1985": 2, "numnum:max:POP1985": 636, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 636, "numnum:count:POP1990": 2, "numnum:max:POP1990": 757, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 757, "numnum:count:POP1995": 2, "numnum:max:POP1995": 902, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 902, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1073, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1073, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1261, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1261, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1328, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1328, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1421, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1421, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1587, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1587, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1797, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1797, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2047, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2047, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 28.300781, -15.411319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -33.084432, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 36.816657, "numnum:min:LONGITUDE": 31.044709, "numnum:sum:LONGITUDE": 101.644668, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 646750, "numnum:sum:POP_MAX": 5228750, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 646750, "numnum:sum:POP_MIN": 4940110, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 1061388, "numnum:sum:POP_OTHER": 6294227, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 927967, "numnum:min:GEONAMEID": 184745, "numnum:sum:GEONAMEID": 2003011, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 965164, "numnum:sum:MAX_POP10": 6200445, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 912521, "numnum:sum:MAX_POP20": 6147802, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3418532, "numnum:min:MAX_POP50": 989470, "numnum:sum:MAX_POP50": 6241441, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3418532, "numnum:min:MAX_POP300": 989470, "numnum:sum:MAX_POP300": 6247465, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1100, "numnum:min:MIN_AREAKM": 310, "numnum:sum:MIN_AREAKM": 2108, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1373, "numnum:min:MAX_AREAKM": 326, "numnum:sum:MAX_AREAKM": 2418, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 425, "numnum:min:MIN_AREAMI": 120, "numnum:sum:MIN_AREAMI": 814, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 530, "numnum:min:MAX_AREAMI": 126, "numnum:sum:MAX_AREAMI": 933, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 186, "numnum:sum:MIN_PERKM": 2100, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 210, "numnum:sum:MAX_PERKM": 2439, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 1304, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 1515, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 36.608333, "numnum:min:MIN_BBXMIN": 30.908333, "numnum:sum:MIN_BBXMIN": 101.02499900000001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 36.608333, "numnum:min:MAX_BBXMIN": 30.908333, "numnum:sum:MAX_BBXMIN": 101.02499900000001, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 37.066667, "numnum:min:MIN_BBXMAX": 31.175, "numnum:sum:MIN_BBXMAX": 102.42942200000002, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 37.066667, "numnum:min:MAX_BBXMAX": 31.191667, "numnum:sum:MAX_BBXMAX": 102.866667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -33.791666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -33.766666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -32.5, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -32.45, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 36.804283, "numnum:min:MEAN_BBXC": 31.045288, "numnum:sum:MEAN_BBXC": 101.73827, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -33.110244, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 646750, "numnum:sum:GN_POP": 4940110, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": 1025, "numnum:sum:GTOPO30": 4230, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 462, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 786, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -19.080000000000003, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 36.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 67.82, "numnum:count:POP1950": 3, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 280, "numnum:count:POP1955": 3, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 393, "numnum:count:POP1960": 3, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 541, "numnum:count:POP1965": 3, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 723, "numnum:count:POP1970": 3, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 948, "numnum:count:POP1975": 3, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1209, "numnum:count:POP1980": 3, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1478, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1868, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2427, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3010, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3612, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4302, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4582, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5026, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5891, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6918, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8118, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 31.069336, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 140, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -25.706921, "numnum:sum:LATITUDE": -37.411079, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 28.229429, "numnum:sum:LONGITUDE": 71.469673, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1338000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 1466698, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1338000, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 1380872, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1443084, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1443084, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 964137, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 1885909, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1444949, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 1573647, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1444949, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 1573647, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1444949, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 1573647, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1444949, "numnum:min:MAX_POP300": 128698, "numnum:sum:MAX_POP300": 1573647, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 502, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 562, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 562, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 194, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 217, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 217, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 256, "numnum:min:MIN_PERKM": 98, "numnum:sum:MIN_PERKM": 354, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 256, "numnum:min:MAX_PERKM": 98, "numnum:sum:MAX_PERKM": 354, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 159, "numnum:min:MIN_PERMI": 61, "numnum:sum:MIN_PERMI": 220, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 159, "numnum:min:MAX_PERMI": 61, "numnum:sum:MAX_PERMI": 220, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 28.041667, "numnum:sum:MIN_BBXMIN": 71.266667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 28.041667, "numnum:sum:MAX_BBXMIN": 71.266667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 28.4, "numnum:sum:MIN_BBXMAX": 71.691667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 28.4, "numnum:sum:MAX_BBXMAX": 71.691667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -25.891667, "numnum:sum:MIN_BBYMIN": -37.650000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -25.891667, "numnum:sum:MAX_BBYMIN": -37.650000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -25.641667, "numnum:sum:MIN_BBYMAX": -37.116667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -25.641667, "numnum:sum:MAX_BBYMAX": -37.116667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 28.214676, "numnum:sum:MEAN_BBXC": 71.479028, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -25.755716, "numnum:sum:MEAN_BBYC": -37.395647, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1619438, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 1662310, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1282, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 1317, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 460, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.73, "numnum:sum:UN_LAT": -25.73, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.21, "numnum:count:POP1950": 2, "numnum:max:POP1950": 275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 275, "numnum:count:POP1955": 2, "numnum:max:POP1955": 340, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 340, "numnum:count:POP1960": 2, "numnum:max:POP1960": 419, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 419, "numnum:count:POP1965": 2, "numnum:max:POP1965": 488, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 488, "numnum:count:POP1970": 2, "numnum:max:POP1970": 565, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 565, "numnum:count:POP1975": 2, "numnum:max:POP1975": 624, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 624, "numnum:count:POP1980": 2, "numnum:max:POP1980": 688, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 688, "numnum:count:POP1985": 2, "numnum:max:POP1985": 763, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 763, "numnum:count:POP1990": 2, "numnum:max:POP1990": 911, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 911, "numnum:count:POP1995": 2, "numnum:max:POP1995": 951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 951, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1084, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1084, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1273, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1273, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1338, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1338, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1409, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1409, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1482, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1482, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1544, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1544, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1604, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1604, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -24.646313, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -80.429654, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 31.199997, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 84.595218, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 361324, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 579517, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 159243, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 282155, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 356225, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 515121, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 935048, "numnum:min:GEONAMEID": 932505, "numnum:sum:GEONAMEID": 2801326, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 361324, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 530349, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 361324, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 530349, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 361324, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 530349, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 361324, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 520567, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 141, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 231, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 141, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 231, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 54, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 89, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 54, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 89, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 177, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 268, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 177, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 268, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 110, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 167, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 110, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 167, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 31.183333, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 84.499999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 31.183333, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 84.499999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 31.233333, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 84.841667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 31.233333, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 84.841667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -24.7, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -80.68333299999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -24.7, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -80.68333299999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -24.6, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -80.233334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -24.6, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -80.233334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 31.201993, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 84.663786, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -24.656793, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -80.437269, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 208411, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 331323, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1482, "numnum:min:GTOPO30": 651, "numnum:sum:GTOPO30": 3139, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 460, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -26.170044999999999, "numnum:min:LATITUDE": -29.119994, "numnum:sum:LATITUDE": -81.60668999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 31.133335, "numnum:min:LONGITUDE": 26.229913, "numnum:sum:LONGITUDE": 85.393258, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 90138, "numnum:sum:POP_MAX": 3988202, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 76218, "numnum:sum:POP_MIN": 2559356, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 89979, "numnum:sum:POP_OTHER": 4398738, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 30, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 30, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 934985, "numnum:sum:GEONAMEID": 2947510, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 90138, "numnum:sum:MAX_POP10": 4433975, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 90138, "numnum:sum:MAX_POP20": 5960356, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 90138, "numnum:sum:MAX_POP50": 5960356, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5503687, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 28, "numnum:sum:MIN_AREAKM": 1257, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 28, "numnum:sum:MAX_AREAKM": 1747, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 485, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 674, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 612, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 828, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 943, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 380, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 514, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 585, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 31.1, "numnum:min:MIN_BBXMIN": 26.166667, "numnum:sum:MIN_BBXMIN": 85, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 31.1, "numnum:min:MAX_BBXMIN": 26.166667, "numnum:sum:MAX_BBXMIN": 85, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 31.158333, "numnum:min:MIN_BBXMAX": 26.3, "numnum:sum:MIN_BBXMAX": 85.652026, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 31.158333, "numnum:min:MAX_BBXMAX": 26.3, "numnum:sum:MAX_BBXMAX": 85.95, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -26.35, "numnum:min:MIN_BBYMIN": -29.2, "numnum:sum:MIN_BBYMIN": -81.94999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -26.35, "numnum:min:MAX_BBYMIN": -29.2, "numnum:sum:MAX_BBYMIN": -81.94999999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -25.991667, "numnum:min:MIN_BBYMAX": -29.058333, "numnum:sum:MIN_BBYMAX": -81.333333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -25.941667, "numnum:min:MAX_BBYMAX": -29.058333, "numnum:sum:MAX_BBYMAX": -81.283333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 31.129842, "numnum:min:MEAN_BBXC": 26.225714, "numnum:sum:MEAN_BBXC": 85.419268, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -26.187259, "numnum:min:MEAN_BBYC": -29.128155, "numnum:sum:MEAN_BBYC": -81.630842, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 10, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 76218, "numnum:sum:GN_POP": 2565751, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 1156, "numnum:sum:GTOPO30": 4329, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 3, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.155438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 1, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -6.174418, "numnum:sum:LATITUDE": -10.79105, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 106.829438, "numnum:min:LONGITUDE": 55.44999, "numnum:sum:LONGITUDE": 162.279428, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 9158576, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 8563002, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 9163350, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1642911, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 1884042, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 9698548, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 15107636, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 22051156, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 22064940, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 1318, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 19450, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 509, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 7510, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 318, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 344, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 10250, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 197, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 213, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 6369, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 105.891667, "numnum:min:MIN_BBXMIN": 55.416667, "numnum:sum:MIN_BBXMIN": 161.308334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 106.473854, "numnum:min:MAX_BBXMIN": 55.416667, "numnum:sum:MAX_BBXMIN": 161.890521, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 106.932506, "numnum:min:MIN_BBXMAX": 55.475, "numnum:sum:MIN_BBXMAX": 162.407506, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 109.808333, "numnum:min:MAX_BBXMAX": 55.475, "numnum:sum:MAX_BBXMAX": 165.283333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -7.716667, "numnum:sum:MIN_BBYMIN": -12.366667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -6.383127, "numnum:sum:MAX_BBYMIN": -11.033127, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -6.016667, "numnum:sum:MIN_BBYMAX": -10.616667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -5.875, "numnum:sum:MAX_BBYMAX": -10.475, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 106.989399, "numnum:min:MEAN_BBXC": 55.45, "numnum:sum:MEAN_BBXC": 162.439399, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -6.313824, "numnum:sum:MEAN_BBYC": -10.940213, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 8563002, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9997, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 280, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 280, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -6.16, "numnum:sum:UN_LAT": -6.16, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 106.8, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1452, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1972, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2679, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3297, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3915, "numnum:count:POP1975": 2, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4813, "numnum:count:POP1980": 2, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5984, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7009, "numnum:count:POP1990": 2, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8175, "numnum:count:POP1995": 2, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8322, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8390, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8843, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9125, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9703, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10792, "numnum:count:POP2025": 2, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11689, "numnum:count:POP2050": 2, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12363, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -18.916637, "numnum:min:LATITUDE": -20.166639, "numnum:sum:LATITUDE": -39.083276, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 57.499994, "numnum:min:LONGITUDE": 47.516624, "numnum:sum:LONGITUDE": 105.016618, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1697000, "numnum:min:POP_MAX": 595491, "numnum:sum:POP_MAX": 2292491, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1391433, "numnum:min:POP_MIN": 148416, "numnum:sum:POP_MIN": 1539849, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1844658, "numnum:min:POP_OTHER": 304613, "numnum:sum:POP_OTHER": 2149271, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1070940, "numnum:min:GEONAMEID": 934154, "numnum:sum:GEONAMEID": 2005094, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1727538, "numnum:min:MAX_POP10": 291837, "numnum:sum:MAX_POP10": 2019375, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1727538, "numnum:min:MAX_POP20": 595491, "numnum:sum:MAX_POP20": 2323029, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1727538, "numnum:min:MAX_POP50": 595491, "numnum:sum:MAX_POP50": 2323029, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1727538, "numnum:min:MAX_POP300": 595491, "numnum:sum:MAX_POP300": 2323029, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 700, "numnum:min:MIN_AREAKM": 70, "numnum:sum:MIN_AREAKM": 770, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 700, "numnum:min:MAX_AREAKM": 152, "numnum:sum:MAX_AREAKM": 852, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 270, "numnum:min:MIN_AREAMI": 27, "numnum:sum:MIN_AREAMI": 297, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 270, "numnum:min:MAX_AREAMI": 59, "numnum:sum:MAX_AREAMI": 329, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 784, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 699, "numnum:min:MAX_PERKM": 154, "numnum:sum:MAX_PERKM": 853, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 487, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 434, "numnum:min:MAX_PERMI": 96, "numnum:sum:MAX_PERMI": 530, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 57.425, "numnum:min:MIN_BBXMIN": 47.233333, "numnum:sum:MIN_BBXMIN": 104.658333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 57.425, "numnum:min:MAX_BBXMIN": 47.233333, "numnum:sum:MAX_BBXMIN": 104.658333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 57.541667, "numnum:min:MIN_BBXMAX": 47.625, "numnum:sum:MIN_BBXMAX": 105.16666699999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 57.575, "numnum:min:MAX_BBXMAX": 47.625, "numnum:sum:MAX_BBXMAX": 105.2, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -19.166667, "numnum:min:MIN_BBYMIN": -20.333333, "numnum:sum:MIN_BBYMIN": -39.5, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -19.166667, "numnum:min:MAX_BBYMIN": -20.248073, "numnum:sum:MAX_BBYMIN": -39.41474, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -18.625, "numnum:min:MIN_BBYMAX": -20.108333, "numnum:sum:MIN_BBYMAX": -38.733333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -18.625, "numnum:min:MAX_BBYMAX": -20.108333, "numnum:sum:MAX_BBYMAX": -38.733333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 57.491611, "numnum:min:MEAN_BBXC": 47.476707, "numnum:sum:MEAN_BBXC": 104.968318, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -18.875473, "numnum:min:MEAN_BBYC": -20.221833, "numnum:sum:MEAN_BBYC": -39.097306, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1391433, "numnum:min:GN_POP": 155226, "numnum:sum:GN_POP": 1546659, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": 133, "numnum:sum:GTOPO30": 1422, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 345, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 345, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -18.9, "numnum:sum:UN_LAT": -18.9, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 47.52, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 47.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 177, "numnum:count:POP1955": 2, "numnum:max:POP1955": 189, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 189, "numnum:count:POP1960": 2, "numnum:max:POP1960": 252, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 252, "numnum:count:POP1965": 2, "numnum:max:POP1965": 298, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 298, "numnum:count:POP1970": 2, "numnum:max:POP1970": 363, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 363, "numnum:count:POP1975": 2, "numnum:max:POP1975": 454, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 454, "numnum:count:POP1980": 2, "numnum:max:POP1980": 580, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 580, "numnum:count:POP1985": 2, "numnum:max:POP1985": 742, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 742, "numnum:count:POP1990": 2, "numnum:max:POP1990": 948, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 948, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1169, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1169, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1361, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1361, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1590, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1590, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1697, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1697, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1877, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1877, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2229, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2229, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2642, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2642, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3118, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3118, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.937464 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -9.464708, "numnum:min:LATITUDE": -35.283029, "numnum:sum:LATITUDE": -44.747737, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 149.129026, "numnum:min:LONGITUDE": 147.192504, "numnum:sum:LONGITUDE": 296.32153000000008, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 327700, "numnum:min:POP_MAX": 283733, "numnum:sum:POP_MAX": 611433, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 251136, "numnum:min:POP_MIN": 234032, "numnum:sum:POP_MIN": 485168, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 251304, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 251304, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2172517, "numnum:min:GEONAMEID": 2088122, "numnum:sum:GEONAMEID": 4260639, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 251136, "numnum:min:MAX_POP10": 234032, "numnum:sum:MAX_POP10": 485168, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 251136, "numnum:min:MAX_POP20": 244896, "numnum:sum:MAX_POP20": 496032, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 251136, "numnum:min:MAX_POP50": 244896, "numnum:sum:MAX_POP50": 496032, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 251136, "numnum:min:MAX_POP300": 244896, "numnum:sum:MAX_POP300": 496032, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 226, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 315, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 251, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 340, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 87, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 122, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 97, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 132, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 175, "numnum:min:MIN_PERKM": 92, "numnum:sum:MIN_PERKM": 267, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 202, "numnum:min:MAX_PERKM": 92, "numnum:sum:MAX_PERKM": 294, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 109, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 166, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 126, "numnum:min:MAX_PERMI": 57, "numnum:sum:MAX_PERMI": 183, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 149, "numnum:min:MIN_BBXMIN": 147.141667, "numnum:sum:MIN_BBXMIN": 296.141667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 149, "numnum:min:MAX_BBXMIN": 147.141667, "numnum:sum:MAX_BBXMIN": 296.141667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 149.2, "numnum:min:MIN_BBXMAX": 147.241667, "numnum:sum:MIN_BBXMAX": 296.441667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 149.2, "numnum:min:MAX_BBXMAX": 147.241667, "numnum:sum:MAX_BBXMAX": 296.441667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -9.508333, "numnum:min:MIN_BBYMIN": -35.483333, "numnum:sum:MIN_BBYMIN": -44.991666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -9.508333, "numnum:min:MAX_BBYMIN": -35.455764, "numnum:sum:MAX_BBYMIN": -44.964097, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -9.358333, "numnum:min:MIN_BBYMAX": -35.183333, "numnum:sum:MIN_BBYMAX": -44.541666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -9.358333, "numnum:min:MAX_BBYMAX": -35.183333, "numnum:sum:MAX_BBYMAX": -44.541666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 149.094107, "numnum:min:MEAN_BBXC": 147.185377, "numnum:sum:MEAN_BBXC": 296.279484, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -9.433491, "numnum:min:MEAN_BBYC": -35.309627, "numnum:sum:MEAN_BBYC": -44.743117999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 327700, "numnum:min:GN_POP": 283733, "numnum:sum:GN_POP": 611433, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 609, "numnum:min:GTOPO30": 50, "numnum:sum:GTOPO30": 659, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -71.740042, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 296.16019600000007, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 4170000, "numnum:sum:POP_MAX": 8800000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3735047, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 1805353, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2158177, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 4305891, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 1904377, "numnum:sum:MAX_POP10": 4635834, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 2545035, "numnum:sum:MAX_POP20": 5276492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 2564188, "numnum:sum:MAX_POP50": 5728196, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 2564188, "numnum:sum:MAX_POP300": 5728196, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 1010, "numnum:sum:MIN_AREAKM": 2088, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 1409, "numnum:sum:MAX_AREAKM": 2963, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 390, "numnum:sum:MIN_AREAMI": 806, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 544, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 360, "numnum:sum:MIN_PERKM": 828, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 717, "numnum:sum:MAX_PERKM": 1560, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 224, "numnum:sum:MIN_PERMI": 515, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 445, "numnum:sum:MAX_PERMI": 969, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 295.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 295.5606, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 296.635765, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 296.741667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -72.30000000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -72.10216700000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -71.231572, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -71.166667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 296.104845, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -71.68198100000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 3730206, "numnum:sum:GN_POP": 8124782, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 0, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 0, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 274, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -33.88, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 145.07, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 1332, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 1574, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 1851, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 2068, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 2334, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 2561, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 2765, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 2935, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 3117, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 3257, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 3433, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 3641, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 3728, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 3851, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 4013, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 4137, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 4238, "numnum:sum:POP2050": 9064, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -9.437994, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -50.737967999999998, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 174.783274, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 334.73304, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 393400, "numnum:min:POP_MAX": 76328, "numnum:sum:POP_MAX": 469728, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 199200, "numnum:min:POP_MIN": 56298, "numnum:sum:POP_MIN": 255498, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 140594, "numnum:min:POP_OTHER": 76328, "numnum:sum:POP_OTHER": 216922, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2144168, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 4252670, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 144164, "numnum:min:MAX_POP10": 76328, "numnum:sum:MAX_POP10": 220492, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 144164, "numnum:min:MAX_POP20": 76328, "numnum:sum:MAX_POP20": 220492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 144164, "numnum:min:MAX_POP50": 76328, "numnum:sum:MAX_POP50": 220492, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 144164, "numnum:min:MAX_POP300": 76328, "numnum:sum:MAX_POP300": 220492, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 77, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 95, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 77, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 95, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 30, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 37, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 30, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 37, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 79, "numnum:min:MIN_PERKM": 33, "numnum:sum:MIN_PERKM": 112, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 79, "numnum:min:MAX_PERKM": 33, "numnum:sum:MAX_PERKM": 112, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 49, "numnum:min:MIN_PERMI": 21, "numnum:sum:MIN_PERMI": 70, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 49, "numnum:min:MAX_PERMI": 21, "numnum:sum:MAX_PERMI": 70, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 174.725, "numnum:min:MIN_BBXMIN": 159.916667, "numnum:sum:MIN_BBXMIN": 334.641667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 174.725, "numnum:min:MAX_BBXMIN": 159.916667, "numnum:sum:MAX_BBXMIN": 334.641667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 174.841667, "numnum:min:MIN_BBXMAX": 160.016667, "numnum:sum:MIN_BBXMAX": 334.858334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 174.841667, "numnum:min:MAX_BBXMAX": 160.016667, "numnum:sum:MAX_BBXMAX": 334.858334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -9.441667, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -50.791667000000007, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -9.441667, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -50.791667000000007, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -9.408333, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -50.608333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -9.408333, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -50.608333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 174.78792, "numnum:min:MEAN_BBXC": 159.966865, "numnum:sum:MEAN_BBXC": 334.754785, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -9.42996, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -50.715499, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 56298, "numnum:min:GN_POP": 5428, "numnum:sum:GN_POP": 61726, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 316, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -17.73335, "numnum:min:LATITUDE": -36.850013, "numnum:sum:LATITUDE": -54.583363, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 174.764981, "numnum:min:LONGITUDE": 168.316641, "numnum:sum:LONGITUDE": 343.08162200000006, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 44040, "numnum:sum:POP_MAX": 1289040, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 35901, "numnum:sum:POP_MIN": 309921, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 7702, "numnum:sum:POP_OTHER": 251496, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 19, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2193733, "numnum:min:GEONAMEID": 2135171, "numnum:sum:GEONAMEID": 4328904, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 7702, "numnum:sum:MAX_POP10": 281722, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 7702, "numnum:sum:MAX_POP20": 361935, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 7702, "numnum:sum:MAX_POP50": 358066, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 7702, "numnum:sum:MAX_POP300": 645702, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 176, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 406, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 68, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 157, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 121, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 282, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 75, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 176, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 174.583333, "numnum:min:MIN_BBXMIN": 168.3, "numnum:sum:MIN_BBXMIN": 342.883333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 174.657483, "numnum:min:MAX_BBXMIN": 168.3, "numnum:sum:MAX_BBXMIN": 342.957483, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 174.883333, "numnum:min:MIN_BBXMAX": 168.325, "numnum:sum:MIN_BBXMAX": 343.208333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 174.983333, "numnum:min:MAX_BBXMAX": 168.325, "numnum:sum:MAX_BBXMAX": 343.30833299999997, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -17.758333, "numnum:min:MIN_BBYMIN": -37.091667, "numnum:sum:MIN_BBYMIN": -54.85, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -17.758333, "numnum:min:MAX_BBYMIN": -36.964958, "numnum:sum:MAX_BBYMIN": -54.723291, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -17.708333, "numnum:min:MIN_BBYMAX": -36.825, "numnum:sum:MIN_BBYMAX": -54.533333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -17.708333, "numnum:min:MAX_BBYMAX": -36.8, "numnum:sum:MAX_BBYMAX": -54.50833299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 174.755045, "numnum:min:MEAN_BBXC": 168.3125, "numnum:sum:MEAN_BBXC": 343.067545, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -17.728125, "numnum:min:MEAN_BBYC": -36.896818, "numnum:sum:MEAN_BBYC": -54.624943, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 35901, "numnum:sum:GN_POP": 453811, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 26, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 33, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 2, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 2, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 2, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 2, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 2, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 2, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 2, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 2, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 2, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 2, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 140, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -18.133016, "numnum:sum:LATITUDE": -26.649668000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 178.441707, "numnum:sum:LONGITUDE": 357.65835400000005, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 175399, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 180148, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 88271, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 93020, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 13, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2110394, "numnum:sum:GEONAMEID": 4308542, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 1, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 143230, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 143230, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 143230, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 143230, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 143230, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 143230, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 143230, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 143230, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 100, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 53, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 53, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 53, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 53, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 20, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 20, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 20, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 20, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 56, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 56, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 56, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 56, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 35, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 35, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 35, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 35, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 178.425, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 178.425, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 178.533333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 178.533333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -18.166667, "numnum:sum:MIN_BBYMIN": -18.166667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -18.166667, "numnum:sum:MAX_BBYMIN": -18.166667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -18.025, "numnum:sum:MIN_BBYMAX": -18.025, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -18.025, "numnum:sum:MAX_BBYMAX": -18.025, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 178.472885, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -18.106731, "numnum:sum:MEAN_BBYC": -18.106731, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 77366, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 82115, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": -9999, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19998, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.537565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 230, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 50.833317, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 93.33331799999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 4.333317, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 5.849803, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1743000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 1796998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 22256, "numnum:sum:POP_MIN": 1041278, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1490164, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 1543535, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3130067, "numnum:min:GEONAMEID": 2800866, "numnum:sum:GEONAMEID": 5930933, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1759840, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 1813838, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1874437, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 1928435, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3576473, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 3630471, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3576473, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3576473, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3576473, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3576473, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 900, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 923, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2344, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2367, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 347, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 356, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 905, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 914, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 1046, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 3031, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 651, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1884, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 3.575, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 5.058333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 3.983529, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 5.466862, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 4.666667, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 6.2583340000000009, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 5, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 6.591667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 50.6, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 93.08333300000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 50.65, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 93.133333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.016667, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 93.566667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.408333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 93.958333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 4.329159, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 5.864632, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 50.919556, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 93.437687, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 52, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 1026912, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 48, "numnum:sum:GTOPO30": 735, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 384, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 50.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.83, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 4.36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 4.36, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1415, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1415, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1449, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1449, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1485, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1485, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1525, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1525, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1568, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1568, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1610, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1610, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1654, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1654, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1654, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1654, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1680, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1680, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1715, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1715, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1733, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1733, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1742, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1742, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1743, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1743, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1744, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1744, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1744, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1744, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1744, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1744, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1744, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 49.61166, "numnum:min:LATITUDE": 48.866693, "numnum:sum:LATITUDE": 98.478353, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 2.333335, "numnum:sum:LONGITUDE": 8.463338, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 107260, "numnum:sum:POP_MAX": 10011260, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 76684, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 87861, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 106219, "numnum:sum:POP_OTHER": 7248963, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 2960316, "numnum:sum:GEONAMEID": 9902869, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 107260, "numnum:sum:MAX_POP10": 7561432, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 107260, "numnum:sum:MAX_POP20": 8077773, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 107260, "numnum:sum:MAX_POP50": 10067848, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 1181, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 2475, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 456, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 955, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 71, "numnum:sum:MIN_PERKM": 613, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 71, "numnum:sum:MAX_PERKM": 1962, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 44, "numnum:sum:MIN_PERMI": 381, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 44, "numnum:sum:MAX_PERMI": 1219, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 1.658333, "numnum:sum:MIN_BBXMIN": 7.7, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 2.152754, "numnum:sum:MAX_BBXMIN": 8.194421, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 2.658336, "numnum:sum:MIN_BBXMAX": 8.841669, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 2.925, "numnum:sum:MAX_BBXMAX": 9.108333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.558333, "numnum:min:MIN_BBYMIN": 48.491667, "numnum:sum:MIN_BBYMIN": 98.05, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.558333, "numnum:min:MAX_BBYMIN": 48.591667, "numnum:sum:MAX_BBYMIN": 98.15, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.708333, "numnum:min:MIN_BBYMAX": 49.183333, "numnum:sum:MIN_BBYMAX": 98.891666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.708333, "numnum:min:MAX_BBYMAX": 49.183333, "numnum:sum:MAX_BBYMAX": 98.891666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 2.352277, "numnum:sum:MEAN_BBXC": 8.47755, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 49.620833, "numnum:min:MEAN_BBYC": 48.839027, "numnum:sum:MEAN_BBYC": 98.45985999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 76684, "numnum:min:GN_POP": 11177, "numnum:sum:GN_POP": 87861, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 259, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 487, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 46.916683, "numnum:sum:LATITUDE": 102.595247, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 12.563486, "numnum:min:LONGITUDE": 7.466975, "numnum:sum:LONGITUDE": 20.030461, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1085000, "numnum:min:POP_MAX": 275329, "numnum:sum:POP_MAX": 1360329, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1085000, "numnum:min:POP_MIN": 121631, "numnum:sum:POP_MIN": 1206631, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1038288, "numnum:min:POP_OTHER": 267814, "numnum:sum:POP_OTHER": 1306102, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2661552, "numnum:min:GEONAMEID": 2618425, "numnum:sum:GEONAMEID": 5279977, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1124323, "numnum:min:MAX_POP10": 275329, "numnum:sum:MAX_POP10": 1399652, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1230007, "numnum:min:MAX_POP20": 275329, "numnum:sum:MAX_POP20": 1505336, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1256924, "numnum:min:MAX_POP50": 275329, "numnum:sum:MAX_POP50": 1532253, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1256924, "numnum:min:MAX_POP300": 275329, "numnum:sum:MAX_POP300": 1532253, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 438, "numnum:min:MIN_AREAKM": 78, "numnum:sum:MIN_AREAKM": 516, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 577, "numnum:min:MAX_AREAKM": 78, "numnum:sum:MAX_AREAKM": 655, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 169, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 199, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 223, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 253, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 348, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 433, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 542, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 627, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 216, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 269, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 337, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 390, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 12.116667, "numnum:min:MIN_BBXMIN": 7.375, "numnum:sum:MIN_BBXMIN": 19.491667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 12.316667, "numnum:min:MAX_BBXMIN": 7.375, "numnum:sum:MAX_BBXMIN": 19.691667000000004, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 12.658333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 20.191666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 12.658333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 20.191666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 46.9, "numnum:sum:MIN_BBYMIN": 102.3, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 46.9, "numnum:sum:MAX_BBYMIN": 102.483333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 47.041667, "numnum:sum:MIN_BBYMAX": 102.969629, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 47.041667, "numnum:sum:MAX_BBYMAX": 103.05, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 12.437175, "numnum:min:MEAN_BBXC": 7.453227, "numnum:sum:MEAN_BBXC": 19.890402, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 46.958239, "numnum:sum:MEAN_BBYC": 102.674452, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1153615, "numnum:min:GN_POP": 121631, "numnum:sum:GN_POP": 1275246, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 527, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 531, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 175, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 175, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 55.71, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 12.54, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.54, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1216, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1227, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1284, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1373, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1380, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1172, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1172, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1096, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1096, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1056, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1056, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1048, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1048, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1077, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1077, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1085, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1085, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1085, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1085, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1087, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1087, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1092, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1092, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1095, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1095, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1096, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1096, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 6, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 30, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 50, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 47.133724, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 90.87337, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 9.516669, "numnum:min:LONGITUDE": 7.406913, "numnum:sum:LONGITUDE": 16.923582, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 36371, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 72652, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 36371, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 41713, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 102371, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 135380, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2993458, "numnum:sum:GEONAMEID": 6035488, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 108543, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 153985, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 108543, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 153985, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 108543, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 108543, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 0, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 0, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 50, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 70, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 45, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 81, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 45, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 81, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 17, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 31, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 17, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 31, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 90, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 147, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 90, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 147, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 56, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 91, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 56, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 91, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 9.433333, "numnum:min:MIN_BBXMIN": 7.35, "numnum:sum:MIN_BBXMIN": 16.783333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 9.433333, "numnum:min:MAX_BBXMIN": 7.35, "numnum:sum:MAX_BBXMIN": 16.783333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 9.558333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 17.091666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 9.558333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 17.091666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 47.091667, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 90.808334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 47.091667, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 90.808334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 47.233333, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 91.033333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 47.233333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 91.033333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 9.503734, "numnum:min:MEAN_BBXC": 7.442529, "numnum:sum:MEAN_BBXC": 16.946263000000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 47.167478, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 90.92164500000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5197, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 6217, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9288, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 45.800007, "numnum:sum:LATITUDE": 98.321826, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.999995, "numnum:min:LONGITUDE": 13.401549, "numnum:sum:LONGITUDE": 29.401544, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 722526, "numnum:sum:POP_MAX": 4128526, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 698966, "numnum:sum:POP_MIN": 3792980, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 690638, "numnum:sum:POP_OTHER": 3703896, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3186886, "numnum:min:GEONAMEID": 2950159, "numnum:sum:GEONAMEID": 6137045, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 722526, "numnum:sum:MAX_POP10": 3816540, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 722526, "numnum:sum:MAX_POP20": 3815833, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 722526, "numnum:sum:MAX_POP50": 4225992, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 722526, "numnum:sum:MAX_POP300": 4225992, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3503466, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 244, "numnum:sum:MIN_AREAKM": 1055, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 244, "numnum:sum:MAX_AREAKM": 1265, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 407, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 488, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 482, "numnum:min:MIN_PERKM": 223, "numnum:sum:MIN_PERKM": 705, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 709, "numnum:min:MAX_PERKM": 223, "numnum:sum:MAX_PERKM": 932, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 300, "numnum:min:MIN_PERMI": 138, "numnum:sum:MIN_PERMI": 438, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 441, "numnum:min:MAX_PERMI": 138, "numnum:sum:MAX_PERMI": 579, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.825, "numnum:min:MIN_BBXMIN": 12.958333, "numnum:sum:MIN_BBXMIN": 28.783333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.825, "numnum:min:MAX_BBXMIN": 13.193843, "numnum:sum:MAX_BBXMIN": 29.018842999999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 16.191667, "numnum:min:MIN_BBXMAX": 13.925, "numnum:sum:MIN_BBXMAX": 30.116667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 16.191667, "numnum:min:MAX_BBXMAX": 13.925, "numnum:sum:MAX_BBXMAX": 30.116667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 45.683333, "numnum:sum:MIN_BBYMIN": 97.958333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 45.683333, "numnum:sum:MAX_BBYMIN": 97.958333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 45.908333, "numnum:sum:MIN_BBYMAX": 98.61666600000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 45.908333, "numnum:sum:MAX_BBYMAX": 98.61666600000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 16.005419, "numnum:min:MEAN_BBXC": 13.418329, "numnum:sum:MEAN_BBXC": 29.423748, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 45.803305, "numnum:sum:MEAN_BBYC": 98.306963, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 37, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 698966, "numnum:sum:GN_POP": 4125320, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 74, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 74, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 131, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 166, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 192, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 192, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 52.51, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 13.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 13.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3352, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3299, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3260, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3232, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3206, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3130, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3056, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3060, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3422, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3471, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3384, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3391, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3406, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3423, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3434, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3436, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3436, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.509535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 250, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 50.083337, "numnum:min:LATITUDE": 46.055288, "numnum:sum:LATITUDE": 96.13862499999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 14.514969, "numnum:min:LONGITUDE": 14.46598, "numnum:sum:LONGITUDE": 28.980949000000004, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1162000, "numnum:min:POP_MAX": 314807, "numnum:sum:POP_MAX": 1476807, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 255115, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 257202, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1088042, "numnum:min:POP_OTHER": 256316, "numnum:sum:POP_OTHER": 1344358, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 3196359, "numnum:sum:GEONAMEID": 7744752, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1115771, "numnum:min:MAX_POP10": 314807, "numnum:sum:MAX_POP10": 1430578, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1115771, "numnum:min:MAX_POP20": 314807, "numnum:sum:MAX_POP20": 1430578, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1115771, "numnum:min:MAX_POP50": 314807, "numnum:sum:MAX_POP50": 1430578, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1115771, "numnum:min:MAX_POP300": 314807, "numnum:sum:MAX_POP300": 1430578, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 317, "numnum:min:MIN_AREAKM": 145, "numnum:sum:MIN_AREAKM": 462, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 317, "numnum:min:MAX_AREAKM": 145, "numnum:sum:MAX_AREAKM": 462, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 122, "numnum:min:MIN_AREAMI": 56, "numnum:sum:MIN_AREAMI": 178, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 122, "numnum:min:MAX_AREAMI": 56, "numnum:sum:MAX_AREAMI": 178, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 249, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 457, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 249, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 457, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 155, "numnum:min:MIN_PERMI": 129, "numnum:sum:MIN_PERMI": 284, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 129, "numnum:sum:MAX_PERMI": 284, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 14.433333, "numnum:min:MIN_BBXMIN": 14.266667, "numnum:sum:MIN_BBXMIN": 28.7, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 14.433333, "numnum:min:MAX_BBXMIN": 14.266667, "numnum:sum:MAX_BBXMIN": 28.7, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 14.633333, "numnum:min:MIN_BBXMAX": 14.616667, "numnum:sum:MIN_BBXMAX": 29.25, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 14.633333, "numnum:min:MAX_BBXMAX": 14.616667, "numnum:sum:MAX_BBXMAX": 29.25, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.95, "numnum:min:MIN_BBYMIN": 46, "numnum:sum:MIN_BBYMIN": 95.95, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.95, "numnum:min:MAX_BBYMIN": 46, "numnum:sum:MAX_BBYMIN": 95.95, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 50.183333, "numnum:min:MIN_BBYMAX": 46.241667, "numnum:sum:MIN_BBYMAX": 96.425, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 50.183333, "numnum:min:MAX_BBYMAX": 46.241667, "numnum:sum:MAX_BBYMAX": 96.425, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 14.541032, "numnum:min:MEAN_BBXC": 14.445557, "numnum:sum:MEAN_BBXC": 28.986589000000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 50.073451, "numnum:min:MEAN_BBYC": 46.091958, "numnum:sum:MEAN_BBYC": 96.165409, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 61, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 61, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 255115, "numnum:min:GN_POP": 2087, "numnum:sum:GN_POP": 257202, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 308, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": 284, "numnum:sum:GTOPO30": 590, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 173, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 173, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 50.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.1, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 14.45, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 14.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 935, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 935, "numnum:count:POP1955": 2, "numnum:max:POP1955": 967, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 967, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1001, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1001, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1038, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1038, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1076, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1076, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1126, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1126, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1179, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1179, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1197, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1197, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1212, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1212, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1194, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1194, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1172, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1172, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1164, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1164, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1162, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1162, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1160, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1160, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1159, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1159, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1159, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1159, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1159, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1159, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.092393 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 52.250001, "numnum:min:LATITUDE": 43.91715, "numnum:sum:LATITUDE": 144.367166, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 12.46667, "numnum:sum:LONGITUDE": 49.833309, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2400000, "numnum:min:POP_MAX": 29579, "numnum:sum:POP_MAX": 4136579, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1731000, "numnum:min:POP_MIN": 29000, "numnum:sum:POP_MIN": 3462139, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2012431, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3493317, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3168070, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 6685574, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2129163, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 3719586, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2129163, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 3769073, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2129163, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3739494, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2129163, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3739494, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 1610331, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1610331, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 420, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 802, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 1320, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 802, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1365, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 310, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 510, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 310, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 527, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 1266, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 1319, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 786, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 819, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 12.391667, "numnum:sum:MIN_BBXMIN": 49.191666999999998, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 12.391667, "numnum:sum:MAX_BBXMIN": 49.191666999999998, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 12.541667, "numnum:sum:MIN_BBXMAX": 50.483333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 12.541667, "numnum:sum:MAX_BBXMAX": 50.483333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 52.033333, "numnum:min:MIN_BBYMIN": 43.9, "numnum:sum:MIN_BBYMIN": 143.85, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 52.033333, "numnum:min:MAX_BBYMIN": 43.9, "numnum:sum:MAX_BBYMIN": 143.941666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 52.433333, "numnum:min:MIN_BBYMAX": 44, "numnum:sum:MIN_BBYMAX": 144.816666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 52.433333, "numnum:min:MAX_BBYMAX": 44, "numnum:sum:MAX_BBYMAX": 144.816666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 12.462153, "numnum:sum:MEAN_BBXC": 49.845283, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 52.230916, "numnum:min:MEAN_BBYC": 43.953472, "numnum:sum:MEAN_BBYC": 144.366858, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 94, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1702139, "numnum:min:GN_POP": 29000, "numnum:sum:GN_POP": 3422607, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 171, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 171, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 94, "numnum:sum:GTOPO30": 635, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 739, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 52.24, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 100.44, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 37.33, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2086, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2854, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2087, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3029, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2089, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3208, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2080, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3292, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3370, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2059, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3503, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2049, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3614, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2069, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3665, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2096, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3724, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2127, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3779, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2158, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3824, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2264, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3957, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2315, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4022, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2385, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4109, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2451, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4186, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2476, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4212, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2496, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4232, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.241256 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 60, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.465973, "numnum:min:LATITUDE": 41.900012, "numnum:sum:LATITUDE": 84.365985, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 19.266307, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 31.714115, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 145850, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 146682, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 136473, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 137305, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 562430, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 562430, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 11, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 11, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3193044, "numnum:sum:GEONAMEID": 9884875, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 636762, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 782612, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 636762, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 782612, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 145850, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 145850, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 145850, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 145850, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 120, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 177, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 218, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 177, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 218, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 68, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 84, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 68, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 84, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 160, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 204, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 160, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 204, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 99, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 126, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 99, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 126, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 19.208333, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 31.541666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 19.208333, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 31.541666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 19.316667, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 31.797676, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 19.316667, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 31.797676, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.408333, "numnum:min:MIN_BBYMIN": 41.766667, "numnum:sum:MIN_BBYMIN": 84.175, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.408333, "numnum:min:MAX_BBYMIN": 41.766667, "numnum:sum:MAX_BBYMIN": 84.175, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.475, "numnum:min:MIN_BBYMAX": 42.05, "numnum:sum:MIN_BBYMAX": 84.525, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.475, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 84.525, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 19.263397, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 31.683304, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.442115, "numnum:min:MEAN_BBYC": 41.903477, "numnum:sum:MEAN_BBYC": 84.34559200000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 136473, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 137299, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 58, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 75, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 43.850022, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 127.073519, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 19.818883, "numnum:min:LONGITUDE": 12.483258, "numnum:sum:LONGITUDE": 50.685143, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 696731, "numnum:sum:POP_MAX": 4931081, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 628902, "numnum:min:POP_MIN": 35452, "numnum:sum:POP_MIN": 1085640, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 517792, "numnum:sum:POP_OTHER": 3195069, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4219762, "numnum:min:GEONAMEID": 3183875, "numnum:sum:GEONAMEID": 10594918, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 530241, "numnum:sum:MAX_POP10": 3303043, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 530241, "numnum:sum:MAX_POP20": 3303043, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 530241, "numnum:sum:MAX_POP50": 3825471, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 530241, "numnum:sum:MAX_POP300": 3825471, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 74, "numnum:sum:MIN_AREAKM": 683, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 74, "numnum:sum:MAX_AREAKM": 861, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 263, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 332, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 80, "numnum:sum:MIN_PERKM": 574, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 80, "numnum:sum:MAX_PERKM": 692, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 358, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 431, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 19.733333, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 50.283333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 19.733333, "numnum:min:MAX_BBXMIN": 12.450494, "numnum:sum:MAX_BBXMIN": 50.400493999999998, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 19.875, "numnum:min:MIN_BBXMAX": 12.766667, "numnum:sum:MIN_BBXMAX": 51.108334, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 19.875, "numnum:min:MAX_BBXMAX": 12.766667, "numnum:sum:MAX_BBXMAX": 51.108334, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 43.783333, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 126.725, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 43.783333, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 126.725, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 43.9, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 127.33333300000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 43.9, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 127.35, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 19.805556, "numnum:min:MEAN_BBXC": 12.561474, "numnum:sum:MEAN_BBXC": 50.718302, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 43.846183, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 127.05009899999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 696731, "numnum:min:GN_POP": 35452, "numnum:sum:GN_POP": 1106984, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 103, "numnum:sum:GTOPO30": 831, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 3, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavský", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 360, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 44.818645, "numnum:sum:LATITUDE": 140.468669, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 20.467991, "numnum:min:LONGITUDE": 17.116981, "numnum:sum:LONGITUDE": 56.668293000000009, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1679000, "numnum:min:POP_MAX": 423737, "numnum:sum:POP_MAX": 3201737, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 373687, "numnum:sum:POP_MIN": 3151687, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1718895, "numnum:min:POP_OTHER": 361489, "numnum:sum:POP_OTHER": 3351925, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3060972, "numnum:min:GEONAMEID": 792680, "numnum:sum:GEONAMEID": 6908295, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1788020, "numnum:min:MAX_POP10": 373687, "numnum:sum:MAX_POP10": 3453320, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1788020, "numnum:min:MAX_POP20": 373687, "numnum:sum:MAX_POP20": 3453320, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1788020, "numnum:min:MAX_POP50": 373687, "numnum:sum:MAX_POP50": 3453320, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1788020, "numnum:min:MAX_POP300": 373687, "numnum:sum:MAX_POP300": 3453320, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 113, "numnum:sum:MIN_AREAKM": 878, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 556, "numnum:min:MAX_AREAKM": 113, "numnum:sum:MAX_AREAKM": 878, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 339, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 215, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 339, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 765, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 460, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 765, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 475, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 286, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 475, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.316667, "numnum:min:MIN_BBXMIN": 17.016667, "numnum:sum:MIN_BBXMIN": 56.183334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.316667, "numnum:min:MAX_BBXMIN": 17.016667, "numnum:sum:MAX_BBXMIN": 56.183334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 20.575, "numnum:min:MIN_BBXMAX": 17.233333, "numnum:sum:MIN_BBXMAX": 57.224999999999997, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 20.575, "numnum:min:MAX_BBXMAX": 17.233333, "numnum:sum:MAX_BBXMAX": 57.224999999999997, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 44.691667, "numnum:sum:MIN_BBYMIN": 140.133334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 44.691667, "numnum:sum:MAX_BBYMIN": 140.133334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 44.9, "numnum:sum:MIN_BBYMAX": 140.783333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 44.9, "numnum:sum:MAX_BBYMAX": 140.783333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 20.449561, "numnum:min:MEAN_BBXC": 17.131335, "numnum:sum:MEAN_BBXC": 56.687659, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 44.794615, "numnum:sum:MEAN_BBYC": 140.432528, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 423737, "numnum:sum:GN_POP": 3393516, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 132, "numnum:min:GTOPO30": 90, "numnum:sum:GTOPO30": 322, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 659, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 92.3, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 20.41, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 39.5, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2029, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1714, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2215, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1811, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2387, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1878, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2527, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2675, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2005, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2878, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3114, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2036, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3157, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2005, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3167, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1893, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3042, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1787, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2914, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1693, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2799, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1679, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2778, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1664, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2760, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1655, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2763, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1655, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2787, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1655, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2818, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.136767 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 98.95003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 24.099965, "numnum:min:LONGITUDE": 21.433461, "numnum:sum:LONGITUDE": 45.533426000000009, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 742572, "numnum:min:POP_MAX": 494087, "numnum:sum:POP_MAX": 1236659, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 705033, "numnum:min:POP_MIN": 474889, "numnum:sum:POP_MIN": 1179922, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 491890, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 491890, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 785842, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1242014, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 705033, "numnum:min:MAX_POP10": 494087, "numnum:sum:MAX_POP10": 1199120, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 705033, "numnum:min:MAX_POP20": 494087, "numnum:sum:MAX_POP20": 1199120, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 705033, "numnum:min:MAX_POP50": 494087, "numnum:sum:MAX_POP50": 1199120, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 705033, "numnum:min:MAX_POP300": 494087, "numnum:sum:MAX_POP300": 1199120, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 171, "numnum:min:MIN_AREAKM": 114, "numnum:sum:MIN_AREAKM": 285, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 171, "numnum:min:MAX_AREAKM": 114, "numnum:sum:MAX_AREAKM": 285, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 66, "numnum:min:MIN_AREAMI": 44, "numnum:sum:MIN_AREAMI": 110, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 66, "numnum:min:MAX_AREAMI": 44, "numnum:sum:MAX_AREAMI": 110, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 173, "numnum:min:MIN_PERKM": 98, "numnum:sum:MIN_PERKM": 271, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 173, "numnum:min:MAX_PERKM": 98, "numnum:sum:MAX_PERKM": 271, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 108, "numnum:min:MIN_PERMI": 61, "numnum:sum:MIN_PERMI": 169, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 108, "numnum:min:MAX_PERMI": 61, "numnum:sum:MAX_PERMI": 169, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 23.975, "numnum:min:MIN_BBXMIN": 21.3, "numnum:sum:MIN_BBXMIN": 45.275000000000009, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 23.975, "numnum:min:MAX_BBXMIN": 21.3, "numnum:sum:MAX_BBXMIN": 45.275000000000009, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 24.266667, "numnum:min:MIN_BBXMAX": 21.533333, "numnum:sum:MIN_BBXMAX": 45.8, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 24.266667, "numnum:min:MAX_BBXMAX": 21.533333, "numnum:sum:MAX_BBXMAX": 45.8, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 98.825, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 98.825, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 99.15, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 99.15, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 24.127656, "numnum:min:MEAN_BBXC": 21.430243, "numnum:sum:MEAN_BBXC": 45.557899000000009, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 98.96082799999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 25, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 742572, "numnum:min:GN_POP": 474889, "numnum:sum:GN_POP": 1217461, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 246, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 255, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 59.433877, "numnum:sum:LATITUDE": 119.60944, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 24.728041, "numnum:sum:LONGITUDE": 49.662167, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 1509024, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 558457, "numnum:min:POP_MIN": 340027, "numnum:sum:POP_MIN": 898484, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 762958, "numnum:min:POP_OTHER": 317949, "numnum:sum:POP_OTHER": 1080907, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 658225, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 1246634, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 852233, "numnum:min:MAX_POP10": 340027, "numnum:sum:MAX_POP10": 1192260, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 852233, "numnum:min:MAX_POP20": 340027, "numnum:sum:MAX_POP20": 1192260, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 852233, "numnum:min:MAX_POP50": 340027, "numnum:sum:MAX_POP50": 1192260, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 852233, "numnum:min:MAX_POP300": 340027, "numnum:sum:MAX_POP300": 1192260, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 130, "numnum:sum:MIN_AREAKM": 643, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 130, "numnum:sum:MAX_AREAKM": 643, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 50, "numnum:sum:MIN_AREAMI": 248, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 50, "numnum:sum:MAX_AREAMI": 248, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 164, "numnum:sum:MIN_PERKM": 714, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 164, "numnum:sum:MAX_PERKM": 714, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 102, "numnum:sum:MIN_PERMI": 444, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 102, "numnum:sum:MAX_PERMI": 444, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 24.558333, "numnum:sum:MIN_BBXMIN": 49.150000000000009, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 24.558333, "numnum:sum:MAX_BBXMIN": 49.150000000000009, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 24.916667, "numnum:sum:MIN_BBXMAX": 50.108334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 24.916667, "numnum:sum:MAX_BBXMAX": 50.108334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 59.333333, "numnum:sum:MIN_BBYMIN": 119.45, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 59.333333, "numnum:sum:MAX_BBYMIN": 119.45, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 59.525, "numnum:sum:MIN_BBYMAX": 119.958333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 59.525, "numnum:sum:MAX_BBYMAX": 119.958333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 24.746591, "numnum:sum:MEAN_BBXC": 49.656633, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 59.42709, "numnum:sum:MEAN_BBYC": 119.681869, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 558457, "numnum:min:GN_POP": 394024, "numnum:sum:GN_POP": 952481, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": 22, "numnum:sum:GTOPO30": 45, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 183, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 183, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 60.19, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 24.97, "numnum:count:POP1950": 2, "numnum:max:POP1950": 366, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 366, "numnum:count:POP1955": 2, "numnum:max:POP1955": 405, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 405, "numnum:count:POP1960": 2, "numnum:max:POP1960": 448, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 448, "numnum:count:POP1965": 2, "numnum:max:POP1965": 478, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 478, "numnum:count:POP1970": 2, "numnum:max:POP1970": 507, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 507, "numnum:count:POP1975": 2, "numnum:max:POP1975": 582, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 582, "numnum:count:POP1980": 2, "numnum:max:POP1980": 674, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 674, "numnum:count:POP1985": 2, "numnum:max:POP1985": 724, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 724, "numnum:count:POP1990": 2, "numnum:max:POP1990": 872, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 872, "numnum:count:POP1995": 2, "numnum:max:POP1995": 943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 943, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1019, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1019, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1094, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1094, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1115, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1139, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1169, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1195, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1220, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 53.899977, "numnum:min:LATITUDE": 44.433372, "numnum:sum:LATITUDE": 98.333349, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 27.566627, "numnum:min:LONGITUDE": 26.099947, "numnum:sum:LONGITUDE": 53.666574, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1942000, "numnum:min:POP_MAX": 1805000, "numnum:sum:POP_MAX": 3747000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 1577138, "numnum:sum:POP_MIN": 3319332, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 1557919, "numnum:sum:POP_OTHER": 3194493, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 683506, "numnum:min:GEONAMEID": 625144, "numnum:sum:GEONAMEID": 1308650, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 1577138, "numnum:sum:MAX_POP10": 3319332, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 1577138, "numnum:sum:MAX_POP20": 3319332, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 1577138, "numnum:sum:MAX_POP50": 3319332, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 1577138, "numnum:sum:MAX_POP300": 3319332, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 345, "numnum:min:MIN_AREAKM": 211, "numnum:sum:MIN_AREAKM": 556, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 345, "numnum:min:MAX_AREAKM": 211, "numnum:sum:MAX_AREAKM": 556, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 82, "numnum:sum:MIN_AREAMI": 215, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 133, "numnum:min:MAX_AREAMI": 82, "numnum:sum:MAX_AREAMI": 215, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 357, "numnum:min:MIN_PERKM": 196, "numnum:sum:MIN_PERKM": 553, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 357, "numnum:min:MAX_PERKM": 196, "numnum:sum:MAX_PERKM": 553, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 222, "numnum:min:MIN_PERMI": 122, "numnum:sum:MIN_PERMI": 344, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 222, "numnum:min:MAX_PERMI": 122, "numnum:sum:MAX_PERMI": 344, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 27.408333, "numnum:min:MIN_BBXMIN": 25.866667, "numnum:sum:MIN_BBXMIN": 53.275, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 27.408333, "numnum:min:MAX_BBXMIN": 25.866667, "numnum:sum:MAX_BBXMIN": 53.275, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 27.716667, "numnum:min:MIN_BBXMAX": 26.25, "numnum:sum:MIN_BBXMAX": 53.966667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 27.716667, "numnum:min:MAX_BBXMAX": 26.25, "numnum:sum:MAX_BBXMAX": 53.966667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 53.8, "numnum:min:MIN_BBYMIN": 44.316667, "numnum:sum:MIN_BBYMIN": 98.116667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 53.8, "numnum:min:MAX_BBYMIN": 44.316667, "numnum:sum:MAX_BBYMIN": 98.116667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 53.983333, "numnum:min:MIN_BBYMAX": 44.641667, "numnum:sum:MIN_BBYMAX": 98.625, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 53.983333, "numnum:min:MAX_BBYMAX": 44.641667, "numnum:sum:MAX_BBYMAX": 98.625, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 27.562159, "numnum:min:MEAN_BBXC": 26.082182, "numnum:sum:MEAN_BBXC": 53.644341, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 53.893169, "numnum:min:MEAN_BBYC": 44.44411, "numnum:sum:MEAN_BBYC": 98.337279, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1877155, "numnum:min:GN_POP": 1742124, "numnum:sum:GN_POP": 3619279, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 199, "numnum:min:GTOPO30": 71, "numnum:sum:GTOPO30": 270, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 422, "numnum:min:UN_FID": 4, "numnum:sum:UN_FID": 426, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 53.89, "numnum:min:UN_LAT": 44.43, "numnum:sum:UN_LAT": 98.32, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 27.57, "numnum:min:UN_LONG": 26.12, "numnum:sum:UN_LONG": 53.69, "numnum:count:POP1950": 2, "numnum:max:POP1950": 652, "numnum:min:POP1950": 284, "numnum:sum:POP1950": 936, "numnum:count:POP1955": 2, "numnum:max:POP1955": 856, "numnum:min:POP1955": 414, "numnum:sum:POP1955": 1270, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1002, "numnum:min:POP1960": 551, "numnum:sum:POP1960": 1553, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1154, "numnum:min:POP1965": 719, "numnum:sum:POP1965": 1873, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1396, "numnum:min:POP1970": 932, "numnum:sum:POP1970": 2328, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1702, "numnum:min:POP1975": 1120, "numnum:sum:POP1975": 2822, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1865, "numnum:min:POP1980": 1318, "numnum:sum:POP1980": 3183, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1950, "numnum:min:POP1985": 1474, "numnum:sum:POP1985": 3424, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2040, "numnum:min:POP1990": 1607, "numnum:sum:POP1990": 3647, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2018, "numnum:min:POP1995": 1649, "numnum:sum:POP1995": 3667, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1949, "numnum:min:POP2000": 1700, "numnum:sum:POP2000": 3649, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1936, "numnum:min:POP2005": 1775, "numnum:sum:POP2005": 3711, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1942, "numnum:min:POP2010": 1805, "numnum:sum:POP2010": 3747, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1947, "numnum:min:POP2015": 1846, "numnum:sum:POP2015": 3793, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1949, "numnum:min:POP2020": 1879, "numnum:sum:POP2020": 3828, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1949, "numnum:min:POP2025": 1883, "numnum:sum:POP2025": 3832, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1949, "numnum:min:POP2050": 1883, "numnum:sum:POP2050": 3832, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 50.433367, "numnum:min:LATITUDE": 42.683349, "numnum:sum:LATITUDE": 93.116716, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 53.833282, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 1185000, "numnum:sum:POP_MAX": 3894000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1662508, "numnum:min:POP_MIN": 874827, "numnum:sum:POP_MIN": 2537335, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1611692, "numnum:min:POP_OTHER": 871735, "numnum:sum:POP_OTHER": 2483427, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 727011, "numnum:min:GEONAMEID": 703448, "numnum:sum:GEONAMEID": 1430459, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1662508, "numnum:min:MAX_POP10": 874827, "numnum:sum:MAX_POP10": 2537335, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1662508, "numnum:min:MAX_POP20": 874827, "numnum:sum:MAX_POP20": 2537335, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1662508, "numnum:min:MAX_POP50": 874827, "numnum:sum:MAX_POP50": 2537335, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1662508, "numnum:min:MAX_POP300": 874827, "numnum:sum:MAX_POP300": 2537335, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 217, "numnum:min:MIN_AREAKM": 217, "numnum:sum:MIN_AREAKM": 434, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 217, "numnum:min:MAX_AREAKM": 217, "numnum:sum:MAX_AREAKM": 434, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 84, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 168, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 84, "numnum:min:MAX_AREAMI": 84, "numnum:sum:MAX_AREAMI": 168, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 174, "numnum:min:MIN_PERKM": 120, "numnum:sum:MIN_PERKM": 294, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 174, "numnum:min:MAX_PERKM": 120, "numnum:sum:MAX_PERKM": 294, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 108, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 183, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 108, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 183, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 53.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 53.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 54.025, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 54.025, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 50.366667, "numnum:min:MIN_BBYMIN": 42.575, "numnum:sum:MIN_BBYMIN": 92.941667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 50.366667, "numnum:min:MAX_BBYMIN": 42.575, "numnum:sum:MAX_BBYMIN": 92.941667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 50.541667, "numnum:min:MIN_BBYMAX": 42.8, "numnum:sum:MIN_BBYMAX": 93.341667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 50.541667, "numnum:min:MAX_BBYMAX": 42.8, "numnum:sum:MAX_BBYMAX": 93.341667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 53.780949, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 50.451094, "numnum:min:MEAN_BBYC": 42.68234, "numnum:sum:MEAN_BBYC": 93.133434, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 42, "numnum:min:ADMIN1_COD": 12, "numnum:sum:ADMIN1_COD": 54, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 1152556, "numnum:sum:GN_POP": 3666783, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 169, "numnum:sum:GTOPO30": 727, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 511, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 50.44, "numnum:min:UN_LAT": 42.7, "numnum:sum:UN_LAT": 93.14, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 23.33, "numnum:sum:UN_LONG": 53.83, "numnum:count:POP1950": 2, "numnum:max:POP1950": 815, "numnum:min:POP1950": 522, "numnum:sum:POP1950": 1337, "numnum:count:POP1955": 2, "numnum:max:POP1955": 974, "numnum:min:POP1955": 616, "numnum:sum:POP1955": 1590, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1163, "numnum:min:POP1960": 708, "numnum:sum:POP1960": 1871, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1389, "numnum:min:POP1965": 806, "numnum:sum:POP1965": 2195, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1655, "numnum:min:POP1970": 888, "numnum:sum:POP1970": 2543, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1926, "numnum:min:POP1975": 977, "numnum:sum:POP1975": 2903, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 1074, "numnum:sum:POP1980": 3275, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 1181, "numnum:sum:POP1985": 3591, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 1191, "numnum:sum:POP1990": 3765, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 1168, "numnum:sum:POP1995": 3758, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 1128, "numnum:sum:POP2000": 3734, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 1166, "numnum:sum:POP2005": 3838, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 1185, "numnum:sum:POP2010": 3894, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 1212, "numnum:sum:POP2015": 3960, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 1233, "numnum:sum:POP2020": 4003, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 1236, "numnum:sum:POP2025": 4008, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 1236, "numnum:sum:POP2050": 4008, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 30.541992, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 47.005024, "numnum:min:LATITUDE": 36.802778, "numnum:sum:LATITUDE": 83.80780200000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 28.857711, "numnum:min:LONGITUDE": 10.179678, "numnum:sum:LONGITUDE": 39.037389, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2412500, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 3100634, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 728453, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 1364447, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1675117, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 2339589, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2464470, "numnum:min:GEONAMEID": 618426, "numnum:sum:GEONAMEID": 3082896, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1831176, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 2519310, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1831176, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 2519310, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1838972, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 2527106, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1838972, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 2527106, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 480, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 589, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 611, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 185, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 227, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 236, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 485, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 570, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 524, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 609, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 302, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 355, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 326, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 379, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 28.741667, "numnum:min:MIN_BBXMIN": 9.95, "numnum:sum:MIN_BBXMIN": 38.691666999999998, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 28.741667, "numnum:min:MAX_BBXMIN": 9.95, "numnum:sum:MAX_BBXMIN": 38.691666999999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 28.925, "numnum:min:MIN_BBXMAX": 10.497585, "numnum:sum:MIN_BBXMAX": 39.422585, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 28.925, "numnum:min:MAX_BBXMAX": 10.575, "numnum:sum:MAX_BBXMAX": 39.5, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 46.95, "numnum:min:MIN_BBYMIN": 36.633333, "numnum:sum:MIN_BBYMIN": 83.58333300000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 46.95, "numnum:min:MAX_BBYMIN": 36.633333, "numnum:sum:MAX_BBYMIN": 83.58333300000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 47.075, "numnum:min:MIN_BBYMAX": 36.966667, "numnum:sum:MIN_BBYMAX": 84.041667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 47.075, "numnum:min:MAX_BBYMAX": 36.966667, "numnum:sum:MAX_BBYMAX": 84.041667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 28.840203, "numnum:min:MEAN_BBXC": 10.202041, "numnum:sum:MEAN_BBXC": 39.042244, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 47.017185, "numnum:min:MEAN_BBYC": 36.802974, "numnum:sum:MEAN_BBYC": 83.82015899999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 38, "numnum:sum:ADMIN1_COD": 95, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 693210, "numnum:min:GN_POP": 635994, "numnum:sum:GN_POP": 1329204, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 52, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 65, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 41.104996, "numnum:min:LATITUDE": 36.763065, "numnum:sum:LATITUDE": 77.868061, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 29.010002, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 32.060555, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 10061000, "numnum:min:POP_MAX": 3354000, "numnum:sum:POP_MAX": 13415000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 9945610, "numnum:min:POP_MIN": 1977663, "numnum:sum:POP_MIN": 11923273, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9651488, "numnum:min:POP_OTHER": 3332619, "numnum:sum:POP_OTHER": 12984107, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": 745044, "numnum:sum:GEONAMEID": 3252524, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 9945610, "numnum:min:MAX_POP10": 3368320, "numnum:sum:MAX_POP10": 13313930, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 9945243, "numnum:min:MAX_POP20": 3698473, "numnum:sum:MAX_POP20": 13643716, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 10140950, "numnum:min:MAX_POP50": 4203253, "numnum:sum:MAX_POP50": 14344203, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 10140950, "numnum:min:MAX_POP300": 4203253, "numnum:sum:MAX_POP300": 14344203, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 10140950, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10140950, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1249, "numnum:min:MIN_AREAKM": 886, "numnum:sum:MIN_AREAKM": 2135, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1327, "numnum:min:MAX_AREAKM": 1275, "numnum:sum:MAX_AREAKM": 2602, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 482, "numnum:min:MIN_AREAMI": 342, "numnum:sum:MIN_AREAMI": 824, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 512, "numnum:min:MAX_AREAMI": 492, "numnum:sum:MAX_AREAMI": 1004, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 852, "numnum:min:MIN_PERKM": 798, "numnum:sum:MIN_PERKM": 1650, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 926, "numnum:sum:MAX_PERKM": 2118, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 529, "numnum:min:MIN_PERMI": 496, "numnum:sum:MIN_PERMI": 1025, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 575, "numnum:sum:MAX_PERMI": 1316, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 28.2, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 30.841667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 28.257268, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 31.065601, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 29.45, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 32.998211, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 29.558333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 33.300000000000007, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 40.75, "numnum:min:MIN_BBYMIN": 36.45, "numnum:sum:MIN_BBYMIN": 77.2, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 40.75, "numnum:min:MAX_BBYMIN": 36.508333, "numnum:sum:MAX_BBYMIN": 77.258333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 41.258333, "numnum:min:MIN_BBYMAX": 36.816667, "numnum:sum:MIN_BBYMAX": 78.075, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 41.258333, "numnum:min:MAX_BBYMAX": 36.816667, "numnum:sum:MAX_BBYMAX": 78.075, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 29.008987, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 32.110658, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 41.004964, "numnum:min:MEAN_BBYC": 36.673641, "numnum:sum:MEAN_BBYC": 77.678605, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 35, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 1977663, "numnum:sum:GN_POP": 13151920, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 28, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 29, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 6, "numnum:sum:UN_FID": 510, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.06, "numnum:min:UN_LAT": 36.78, "numnum:sum:UN_LAT": 77.84, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 29, "numnum:min:UN_LONG": 3.05, "numnum:sum:UN_LONG": 32.05, "numnum:count:POP1950": 2, "numnum:max:POP1950": 967, "numnum:min:POP1950": 516, "numnum:sum:POP1950": 1483, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1249, "numnum:min:POP1955": 623, "numnum:sum:POP1955": 1872, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1453, "numnum:min:POP1960": 872, "numnum:sum:POP1960": 2325, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2001, "numnum:min:POP1965": 1049, "numnum:sum:POP1965": 3050, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2772, "numnum:min:POP1970": 1254, "numnum:sum:POP1970": 4026, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3600, "numnum:min:POP1975": 1499, "numnum:sum:POP1975": 5099, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4397, "numnum:min:POP1980": 1621, "numnum:sum:POP1980": 6018, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5407, "numnum:min:POP1985": 1672, "numnum:sum:POP1985": 7079, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6552, "numnum:min:POP1990": 1908, "numnum:sum:POP1990": 8460, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7665, "numnum:min:POP1995": 2295, "numnum:sum:POP1995": 9960, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8744, "numnum:min:POP2000": 2754, "numnum:sum:POP2000": 11498, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9709, "numnum:min:POP2005": 3199, "numnum:sum:POP2005": 12908, "numnum:count:POP2010": 2, "numnum:max:POP2010": 10061, "numnum:min:POP2010": 3354, "numnum:sum:POP2010": 13415, "numnum:count:POP2015": 2, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 3574, "numnum:sum:POP2015": 14104, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 3922, "numnum:sum:POP2020": 15099, "numnum:count:POP2025": 2, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 4235, "numnum:sum:POP2025": 15930, "numnum:count:POP2050": 2, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 4499, "numnum:sum:POP2050": 16601, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 910, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 32.8925, "numnum:sum:LATITUDE": 130.36967399999998, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 13.180012, "numnum:sum:LONGITUDE": 95.58633, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 13741000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 229398, "numnum:sum:POP_MIN": 11686655, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 12712545, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 611717, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 1136617, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 13207658, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 13209598, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 13728792, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 13728792, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 11547877, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1760, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 1969, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 680, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 760, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1145, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1410, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 712, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 876, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 12.983333, "numnum:sum:MIN_BBXMIN": 94.924999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 12.983333, "numnum:sum:MAX_BBXMIN": 94.924999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 13.408333, "numnum:sum:MIN_BBXMAX": 96.417067, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 13.408333, "numnum:sum:MAX_BBXMAX": 96.64166599999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 32.808333, "numnum:sum:MIN_BBYMIN": 129.766667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 32.808333, "numnum:sum:MAX_BBYMIN": 129.968695, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 32.908333, "numnum:sum:MIN_BBYMAX": 130.808333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 32.908333, "numnum:sum:MAX_BBYMAX": 130.808333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 13.19322, "numnum:sum:MEAN_BBXC": 95.659668, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 32.862069, "numnum:sum:MEAN_BBYC": 130.33923199999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 9, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1049498, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1278896, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 451, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 426, "numnum:min:UN_FID": 191, "numnum:sum:UN_FID": 961, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 34.34, "numnum:sum:UN_LAT": 131.8, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 36, "numnum:sum:UN_LONG": 118.48, "numnum:count:POP1950": 3, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 106, "numnum:sum:POP1950": 6074, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 136, "numnum:sum:POP1955": 6544, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 174, "numnum:sum:POP1960": 7062, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 235, "numnum:sum:POP1965": 7660, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 398, "numnum:sum:POP1970": 8401, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 611, "numnum:sum:POP1975": 9226, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 797, "numnum:sum:POP1980": 10023, "numnum:count:POP1985": 3, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 1056, "numnum:sum:POP1985": 10813, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 1224, "numnum:sum:POP1990": 11711, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 1160, "numnum:sum:POP1995": 12039, "numnum:count:POP2000": 3, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 1100, "numnum:sum:POP2000": 12993, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 1093, "numnum:sum:POP2005": 13607, "numnum:count:POP2010": 3, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 1100, "numnum:sum:POP2010": 13741, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10495, "numnum:min:POP2015": 1108, "numnum:sum:POP2015": 13925, "numnum:count:POP2020": 3, "numnum:max:POP2020": 10524, "numnum:min:POP2020": 1113, "numnum:sum:POP2020": 14169, "numnum:count:POP2025": 3, "numnum:max:POP2025": 10526, "numnum:min:POP2025": 1114, "numnum:sum:POP2025": 14353, "numnum:count:POP2050": 3, "numnum:max:POP2050": 10526, "numnum:min:POP2050": 1114, "numnum:sum:POP2050": 14495, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.443262, "numnum:sum:LATITUDE": 42.342994, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 3.391531, "numnum:sum:LONGITUDE": 17.906242, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 368250, "numnum:sum:POP_MAX": 9834250, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6966, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 8502, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 6904066, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 5, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 8, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": 735497, "numnum:sum:GEONAMEID": 3297802, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 7484831, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 7442584, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 7748310, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 336921, "numnum:sum:MAX_POP300": 7790661, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 1141, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 1438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 441, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 555, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 725, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 969, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 451, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 602, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 2.925412, "numnum:sum:MIN_BBXMIN": 17.333745, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 2.996332, "numnum:sum:MAX_BBXMIN": 17.404665, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 3.475, "numnum:sum:MIN_BBXMAX": 18.025000000000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 3.475, "numnum:sum:MAX_BBXMAX": 18.025000000000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.4, "numnum:sum:MIN_BBYMIN": 42.216667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.4, "numnum:sum:MAX_BBYMIN": 42.216667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.80087, "numnum:sum:MIN_BBYMAX": 42.742537, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.966667, "numnum:sum:MAX_BBYMAX": 42.908334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 3.231132, "numnum:sum:MEAN_BBXC": 17.714166, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.585848, "numnum:sum:MEAN_BBYC": 42.46752, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 6794, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 8330, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 90, "numnum:min:GTOPO30": 89, "numnum:sum:GTOPO30": 179, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 392, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 392, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 6.45, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 6.45, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 3.3, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 3.3, "numnum:count:POP1950": 2, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 305, "numnum:count:POP1955": 2, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 468, "numnum:count:POP1960": 2, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 762, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1135, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1414, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1890, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2572, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3500, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4764, "numnum:count:POP1995": 2, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5966, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7233, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8767, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9466, "numnum:count:POP2015": 2, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 10572, "numnum:count:POP2020": 2, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 12403, "numnum:count:POP2025": 2, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14134, "numnum:count:POP2050": 2, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15796, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 13.516706, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 20.333419, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 6.733325, "numnum:min:LONGITUDE": 2.116656, "numnum:sum:LONGITUDE": 11.466607, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 915000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 1303219, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 742791, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 1033125, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 806945, "numnum:min:POP_OTHER": 88219, "numnum:sum:POP_OTHER": 1610489, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 2392087, "numnum:sum:GEONAMEID": 8220664, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 742791, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 1348463, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 742791, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 1288780, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 742791, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 1288780, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 742791, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 831010, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 278, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 432, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 319, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 473, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 107, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 166, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 123, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 182, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 251, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 397, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 312, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 458, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 156, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 248, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 194, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 286, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 6.691667, "numnum:min:MIN_BBXMIN": 2.033333, "numnum:sum:MIN_BBXMIN": 11.283332999999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 6.691667, "numnum:min:MAX_BBXMIN": 2.033333, "numnum:sum:MAX_BBXMIN": 11.283332999999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 6.75, "numnum:min:MIN_BBXMAX": 2.216667, "numnum:sum:MIN_BBXMAX": 11.85, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 6.75, "numnum:min:MAX_BBXMAX": 2.216667, "numnum:sum:MAX_BBXMAX": 11.85, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 13.466667, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 20.216667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 13.466667, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 20.216667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 13.6, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 20.641666999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 13.6, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 20.725, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 6.719032, "numnum:min:MEAN_BBXC": 2.125595, "numnum:sum:MEAN_BBXC": 11.552652, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 13.522591, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 20.381429, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 46, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 1014540, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 393, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 385, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 385, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 13.51, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.12, "numnum:count:POP1950": 3, "numnum:max:POP1950": 24, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 24, "numnum:count:POP1955": 3, "numnum:max:POP1955": 37, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 37, "numnum:count:POP1960": 3, "numnum:max:POP1960": 58, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 58, "numnum:count:POP1965": 3, "numnum:max:POP1965": 85, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 85, "numnum:count:POP1970": 3, "numnum:max:POP1970": 129, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 129, "numnum:count:POP1975": 3, "numnum:max:POP1975": 198, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 198, "numnum:count:POP1980": 3, "numnum:max:POP1980": 274, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 274, "numnum:count:POP1985": 3, "numnum:max:POP1985": 344, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 344, "numnum:count:POP1990": 3, "numnum:max:POP1990": 432, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 432, "numnum:count:POP1995": 3, "numnum:max:POP1995": 542, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 542, "numnum:count:POP2000": 3, "numnum:max:POP2000": 680, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 680, "numnum:count:POP2005": 3, "numnum:max:POP2005": 846, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 846, "numnum:count:POP2010": 3, "numnum:max:POP2010": 915, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 915, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1027, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1027, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1258, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1258, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1580, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1580, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2028, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2028, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomé", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomé", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 9.083333, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 21.615279, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 7.533328, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 11.276076, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1576000, "numnum:min:POP_MAX": 762000, "numnum:sum:POP_MAX": 3790000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 162135, "numnum:sum:POP_MIN": 1602419, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2317355, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2394819, "numnum:min:GEONAMEID": 2322794, "numnum:sum:GEONAMEID": 7082880, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1042928, "numnum:min:MAX_POP10": 655258, "numnum:sum:MAX_POP10": 2652634, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1076471, "numnum:min:MAX_POP20": 655258, "numnum:sum:MAX_POP20": 2685298, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1076471, "numnum:min:MAX_POP50": 655258, "numnum:sum:MAX_POP50": 2685742, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1113489, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2067058, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 174, "numnum:sum:MIN_AREAKM": 709, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 174, "numnum:sum:MAX_AREAKM": 875, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 67, "numnum:sum:MIN_AREAMI": 274, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 67, "numnum:sum:MAX_AREAMI": 337, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 692, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 162, "numnum:sum:MAX_PERKM": 863, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 430, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 101, "numnum:sum:MAX_PERMI": 537, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 7.375, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 10.525, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 7.375, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 10.621132, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 7.591667, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 11.707958000000002, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 7.591667, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 11.933333000000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 8.983333, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 21.35, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 8.983333, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 21.35, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 9.166667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 22.033333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 9.166667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 22.091667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 7.484385, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 11.066984999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 9.063188, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 21.633618, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 38, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 749700, "numnum:min:GN_POP": 162135, "numnum:sum:GN_POP": 1602419, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 53, "numnum:sum:GTOPO30": 456, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 174, "numnum:sum:UN_FID": 1057, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 9.05, "numnum:min:UN_LAT": 6.1, "numnum:sum:UN_LAT": 21.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 7.25, "numnum:min:UN_LONG": 1.2, "numnum:sum:UN_LONG": 10.879999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 33, "numnum:min:POP1950": 18, "numnum:sum:POP1950": 71, "numnum:count:POP1955": 3, "numnum:max:POP1955": 56, "numnum:min:POP1955": 21, "numnum:sum:POP1955": 104, "numnum:count:POP1960": 3, "numnum:max:POP1960": 95, "numnum:min:POP1960": 23, "numnum:sum:POP1960": 191, "numnum:count:POP1965": 3, "numnum:max:POP1965": 138, "numnum:min:POP1965": 29, "numnum:sum:POP1965": 278, "numnum:count:POP1970": 3, "numnum:max:POP1970": 192, "numnum:min:POP1970": 48, "numnum:sum:POP1970": 403, "numnum:count:POP1975": 3, "numnum:max:POP1975": 257, "numnum:min:POP1975": 77, "numnum:sum:POP1975": 574, "numnum:count:POP1980": 3, "numnum:max:POP1980": 344, "numnum:min:POP1980": 125, "numnum:sum:POP1980": 806, "numnum:count:POP1985": 3, "numnum:max:POP1985": 466, "numnum:min:POP1985": 204, "numnum:sum:POP1985": 1082, "numnum:count:POP1990": 3, "numnum:max:POP1990": 619, "numnum:min:POP1990": 330, "numnum:sum:POP1990": 1453, "numnum:count:POP1995": 3, "numnum:max:POP1995": 796, "numnum:min:POP1995": 526, "numnum:sum:POP1995": 1899, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 642, "numnum:sum:POP2000": 2497, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 720, "numnum:sum:POP2005": 3350, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1576, "numnum:min:POP2010": 762, "numnum:sum:POP2010": 3790, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1994, "numnum:min:POP2015": 841, "numnum:sum:POP2015": 4504, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2558, "numnum:min:POP2020": 1004, "numnum:sum:POP2020": 5600, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2971, "numnum:min:POP2025": 1196, "numnum:sum:POP2025": 6577, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3358, "numnum:min:POP2050": 1411, "numnum:sum:POP2050": 7560, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 4.366644, "numnum:min:LATITUDE": 0.385389, "numnum:sum:LATITUDE": 4.752033, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 18.558288, "numnum:min:LONGITUDE": 9.457965, "numnum:sum:LONGITUDE": 28.016253, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 831925, "numnum:min:POP_MAX": 578156, "numnum:sum:POP_MAX": 1410081, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 622771, "numnum:min:POP_MIN": 483355, "numnum:sum:POP_MIN": 1106126, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 782274, "numnum:min:POP_OTHER": 483522, "numnum:sum:POP_OTHER": 1265796, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2399697, "numnum:min:GEONAMEID": 2389853, "numnum:sum:GEONAMEID": 4789550, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 792886, "numnum:min:MAX_POP10": 483355, "numnum:sum:MAX_POP10": 1276241, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 792886, "numnum:min:MAX_POP20": 483355, "numnum:sum:MAX_POP20": 1276241, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 831925, "numnum:min:MAX_POP50": 483355, "numnum:sum:MAX_POP50": 1315280, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 831925, "numnum:min:MAX_POP300": 483355, "numnum:sum:MAX_POP300": 1315280, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 108, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 198, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 108, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 211, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 42, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 77, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 42, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 82, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 189, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 107, "numnum:min:MAX_PERKM": 98, "numnum:sum:MAX_PERKM": 205, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 118, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 67, "numnum:min:MAX_PERMI": 61, "numnum:sum:MAX_PERMI": 128, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 18.491667, "numnum:min:MIN_BBXMIN": 9.4, "numnum:sum:MIN_BBXMIN": 27.891666999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 18.491667, "numnum:min:MAX_BBXMIN": 9.4, "numnum:sum:MAX_BBXMIN": 27.891666999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 18.614651, "numnum:min:MIN_BBXMAX": 9.525, "numnum:sum:MIN_BBXMAX": 28.139651, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 18.625, "numnum:min:MAX_BBXMAX": 9.525, "numnum:sum:MAX_BBXMAX": 28.15, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 4.316667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 4.6, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 4.316667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 4.6, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 4.483333, "numnum:min:MIN_BBYMAX": 0.483333, "numnum:sum:MIN_BBYMAX": 4.966666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 4.483333, "numnum:min:MAX_BBYMAX": 0.483333, "numnum:sum:MAX_BBYMAX": 4.966666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 18.546436, "numnum:min:MEAN_BBXC": 9.47328, "numnum:sum:MEAN_BBXC": 28.019716000000004, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 4.388157, "numnum:min:MEAN_BBYC": 0.395238, "numnum:sum:MEAN_BBYC": 4.783395, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 578156, "numnum:min:GN_POP": 542393, "numnum:sum:GN_POP": 1120549, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 373, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9626, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 3.866701, "numnum:sum:LATITUDE": 15.979797999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.049148, "numnum:min:LONGITUDE": 11.516651, "numnum:sum:LONGITUDE": 26.565799, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 989000, "numnum:sum:POP_MAX": 2600000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 681387, "numnum:sum:POP_MIN": 1741974, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 686347, "numnum:sum:POP_OTHER": 1747094, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 4648080, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 681387, "numnum:sum:MAX_POP10": 1741974, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 681387, "numnum:sum:MAX_POP20": 1741974, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 681387, "numnum:sum:MAX_POP50": 1741974, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 681387, "numnum:sum:MAX_POP300": 1741974, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 79, "numnum:sum:MIN_AREAKM": 276, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 79, "numnum:sum:MAX_AREAKM": 276, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 106, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 106, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 116, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 182, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 116, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 182, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 72, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 113, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 72, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 113, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.025, "numnum:min:MIN_BBXMIN": 11.433333, "numnum:sum:MIN_BBXMIN": 26.458333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.025, "numnum:min:MAX_BBXMIN": 11.433333, "numnum:sum:MAX_BBXMIN": 26.458333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 15.133333, "numnum:min:MIN_BBXMAX": 11.6, "numnum:sum:MIN_BBXMAX": 26.733333000000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 15.133333, "numnum:min:MAX_BBXMAX": 11.6, "numnum:sum:MAX_BBXMAX": 26.733333000000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 3.775, "numnum:sum:MIN_BBYMIN": 15.841667000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 3.775, "numnum:sum:MAX_BBYMIN": 15.841667000000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 3.983333, "numnum:sum:MIN_BBYMAX": 16.166666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 3.983333, "numnum:sum:MAX_BBYMAX": 16.166666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 15.079167, "numnum:min:MEAN_BBXC": 11.518344, "numnum:sum:MEAN_BBXC": 26.597511, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 3.865639, "numnum:sum:MEAN_BBYC": 15.986118, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 721081, "numnum:sum:GN_POP": 2020450, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": 290, "numnum:sum:GTOPO30": 1023, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 16, "numnum:min:UN_FID": 9, "numnum:sum:UN_FID": 25, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 3.86, "numnum:sum:UN_LAT": 15.959999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 11.51, "numnum:sum:UN_LONG": 26.75, "numnum:count:POP1950": 2, "numnum:max:POP1950": 32, "numnum:min:POP1950": 22, "numnum:sum:POP1950": 54, "numnum:count:POP1955": 2, "numnum:max:POP1955": 49, "numnum:min:POP1955": 40, "numnum:sum:POP1955": 89, "numnum:count:POP1960": 2, "numnum:max:POP1960": 75, "numnum:min:POP1960": 71, "numnum:sum:POP1960": 146, "numnum:count:POP1965": 2, "numnum:max:POP1965": 112, "numnum:min:POP1965": 109, "numnum:sum:POP1965": 221, "numnum:count:POP1970": 2, "numnum:max:POP1970": 183, "numnum:min:POP1970": 155, "numnum:sum:POP1970": 338, "numnum:count:POP1975": 2, "numnum:max:POP1975": 292, "numnum:min:POP1975": 231, "numnum:sum:POP1975": 523, "numnum:count:POP1980": 2, "numnum:max:POP1980": 415, "numnum:min:POP1980": 324, "numnum:sum:POP1980": 739, "numnum:count:POP1985": 2, "numnum:max:POP1985": 578, "numnum:min:POP1985": 393, "numnum:sum:POP1985": 971, "numnum:count:POP1990": 2, "numnum:max:POP1990": 754, "numnum:min:POP1990": 477, "numnum:sum:POP1990": 1231, "numnum:count:POP1995": 2, "numnum:max:POP1995": 948, "numnum:min:POP1995": 579, "numnum:sum:POP1995": 1527, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 711, "numnum:sum:POP2000": 1903, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 902, "numnum:sum:POP2005": 2391, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 989, "numnum:sum:POP2010": 2600, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1787, "numnum:min:POP2015": 1127, "numnum:sum:POP2015": 2914, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2058, "numnum:min:POP2020": 1405, "numnum:sum:POP2020": 3463, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2312, "numnum:min:POP2025": 1753, "numnum:sum:POP2025": 4065, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2549, "numnum:min:POP2050": 2172, "numnum:sum:POP2050": 4721, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 15.073242, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 400, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 32.079991, "numnum:sum:LATITUDE": 72.00722999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 32.864392, "numnum:sum:LONGITUDE": 67.634404, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 3112000, "numnum:sum:POP_MAX": 6828000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 378358, "numnum:sum:POP_MIN": 3685737, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 2306851, "numnum:sum:POP_OTHER": 5574427, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 323786, "numnum:min:GEONAMEID": 293394, "numnum:sum:GEONAMEID": 617180, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 2324568, "numnum:sum:MAX_POP10": 5631947, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 2324568, "numnum:sum:MAX_POP20": 5631391, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 2324568, "numnum:sum:MAX_POP50": 5631391, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3306823, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 436, "numnum:sum:MIN_AREAKM": 967, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 436, "numnum:sum:MAX_AREAKM": 970, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 168, "numnum:sum:MIN_AREAMI": 373, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 168, "numnum:sum:MAX_AREAMI": 374, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 386, "numnum:min:MIN_PERKM": 355, "numnum:sum:MIN_PERKM": 741, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 386, "numnum:min:MAX_PERKM": 365, "numnum:sum:MAX_PERKM": 751, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 240, "numnum:min:MIN_PERMI": 221, "numnum:sum:MIN_PERMI": 461, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 240, "numnum:min:MAX_PERMI": 227, "numnum:sum:MAX_PERMI": 467, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 67.141667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 32.425, "numnum:sum:MAX_BBXMIN": 67.141667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 33.008333, "numnum:sum:MIN_BBXMAX": 67.966666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 33.008333, "numnum:sum:MAX_BBXMAX": 67.966666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 31.85, "numnum:sum:MIN_BBYMIN": 71.691667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 31.85, "numnum:sum:MAX_BBYMIN": 71.691667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 32.208333, "numnum:sum:MIN_BBYMAX": 72.325, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 32.208333, "numnum:sum:MAX_BBYMAX": 72.325, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 32.753878, "numnum:sum:MEAN_BBXC": 67.59061299999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 32.030266, "numnum:sum:MEAN_BBYC": 71.988109, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 73, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 378358, "numnum:sum:GN_POP": 3895540, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 850, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9110, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 304, "numnum:sum:UN_FID": 804, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 32.04, "numnum:sum:UN_LAT": 71.96000000000001, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 32.85, "numnum:sum:UN_LONG": 67.61, "numnum:count:POP1950": 2, "numnum:max:POP1950": 418, "numnum:min:POP1950": 281, "numnum:sum:POP1950": 699, "numnum:count:POP1955": 2, "numnum:max:POP1955": 556, "numnum:min:POP1955": 439, "numnum:sum:POP1955": 995, "numnum:count:POP1960": 2, "numnum:max:POP1960": 738, "numnum:min:POP1960": 635, "numnum:sum:POP1960": 1373, "numnum:count:POP1965": 2, "numnum:max:POP1965": 954, "numnum:min:POP1965": 882, "numnum:sum:POP1965": 1836, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1341, "numnum:min:POP1970": 1029, "numnum:sum:POP1970": 2370, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1709, "numnum:min:POP1975": 1206, "numnum:sum:POP1975": 2915, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1891, "numnum:min:POP1980": 1416, "numnum:sum:POP1980": 3307, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2213, "numnum:min:POP1985": 1681, "numnum:sum:POP1985": 3894, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2561, "numnum:min:POP1990": 2026, "numnum:sum:POP1990": 4587, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2842, "numnum:min:POP1995": 2442, "numnum:sum:POP1995": 5284, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 2752, "numnum:sum:POP2000": 5931, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 3012, "numnum:sum:POP2005": 6584, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 3112, "numnum:sum:POP2010": 6828, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 3256, "numnum:sum:POP2015": 7164, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 3453, "numnum:sum:POP2020": 7631, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 3600, "numnum:sum:POP2025": 8003, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 3726, "numnum:sum:POP2050": 8315, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.166676, "numnum:min:LATITUDE": 30.04996, "numnum:sum:LATITUDE": 65.216636, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 33.366635, "numnum:min:LONGITUDE": 31.249968, "numnum:sum:LONGITUDE": 64.616603, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 12117300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 7935066, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 222985, "numnum:sum:POP_OTHER": 13943542, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 360630, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 506898, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 15160423, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 15315861, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 30097127, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 30906497, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 128, "numnum:sum:MIN_AREAKM": 1607, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 5028, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 620, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 1941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 1474, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 5119, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 916, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 68, "numnum:sum:MAX_PERMI": 3181, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 33.275, "numnum:min:MIN_BBXMIN": 30.641667, "numnum:sum:MIN_BBXMIN": 63.916667000000007, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 33.275, "numnum:min:MAX_BBXMIN": 30.991693, "numnum:sum:MAX_BBXMIN": 64.266693, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 33.425, "numnum:min:MIN_BBXMAX": 31.672096, "numnum:sum:MIN_BBXMAX": 65.097096, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 33.425, "numnum:min:MAX_BBXMAX": 31.733333, "numnum:sum:MAX_BBXMAX": 65.158333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 35.041667, "numnum:min:MIN_BBYMIN": 29.3, "numnum:sum:MIN_BBYMIN": 64.341667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 35.041667, "numnum:min:MAX_BBYMIN": 29.8, "numnum:sum:MAX_BBYMIN": 64.841667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.225, "numnum:min:MIN_BBYMAX": 30.531354, "numnum:sum:MIN_BBYMAX": 65.756354, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.225, "numnum:min:MAX_BBYMAX": 31.158333, "numnum:sum:MAX_BBYMAX": 66.383333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 33.352244, "numnum:min:MEAN_BBXC": 31.273845, "numnum:sum:MEAN_BBXC": 64.62608900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 35.15, "numnum:min:MEAN_BBYC": 30.353647, "numnum:sum:MEAN_BBYC": 65.503647, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 7935066, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 128, "numnum:min:GTOPO30": 23, "numnum:sum:GTOPO30": 151, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 515, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 30.07, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 30.07, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 31.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 31.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2494, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3029, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3680, "numnum:count:POP1965": 2, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4738, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5585, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6450, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7349, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8328, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9061, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9707, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10534, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11487, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11893, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12503, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13465, "numnum:count:POP2025": 2, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14451, "numnum:count:POP2050": 2, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15561, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 33.354492, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.871975, "numnum:min:LATITUDE": 31.950025, "numnum:sum:LATITUDE": 65.822, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 35.9333, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 71.443008, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1846000, "numnum:min:POP_MAX": 1060000, "numnum:sum:POP_MAX": 2906000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1712125, "numnum:min:POP_MIN": 1060000, "numnum:sum:POP_MIN": 2772125, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2633729, "numnum:min:POP_OTHER": 1661980, "numnum:sum:POP_OTHER": 4295709, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 276781, "numnum:min:GEONAMEID": 250441, "numnum:sum:GEONAMEID": 527222, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2725138, "numnum:min:MAX_POP10": 1712125, "numnum:sum:MAX_POP10": 4437263, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3684787, "numnum:min:MAX_POP20": 1712468, "numnum:sum:MAX_POP20": 5397255, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3684787, "numnum:min:MAX_POP50": 1740692, "numnum:sum:MAX_POP50": 5425479, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3684787, "numnum:min:MAX_POP300": 1740692, "numnum:sum:MAX_POP300": 5425479, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 429, "numnum:min:MIN_AREAKM": 403, "numnum:sum:MIN_AREAKM": 832, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 545, "numnum:min:MAX_AREAKM": 471, "numnum:sum:MAX_AREAKM": 1016, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 166, "numnum:min:MIN_AREAMI": 156, "numnum:sum:MIN_AREAMI": 322, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 210, "numnum:min:MAX_AREAMI": 182, "numnum:sum:MAX_AREAMI": 392, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 403, "numnum:min:MIN_PERKM": 258, "numnum:sum:MIN_PERKM": 661, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 457, "numnum:min:MAX_PERKM": 361, "numnum:sum:MAX_PERKM": 818, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 251, "numnum:min:MIN_PERMI": 160, "numnum:sum:MIN_PERMI": 411, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 284, "numnum:min:MAX_PERMI": 224, "numnum:sum:MAX_PERMI": 508, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 35.775, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 71.216667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 35.775, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 71.216667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 36.041667, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 71.760208, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 36.158333, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 71.91666599999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.7, "numnum:min:MIN_BBYMIN": 31.783333, "numnum:sum:MIN_BBYMIN": 65.483333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.7, "numnum:min:MAX_BBYMIN": 31.783333, "numnum:sum:MAX_BBYMIN": 65.483333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 34.166667, "numnum:min:MIN_BBYMAX": 32.083333, "numnum:sum:MIN_BBYMAX": 66.25, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 34.166667, "numnum:min:MAX_BBYMAX": 32.166667, "numnum:sum:MAX_BBYMAX": 66.333334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 35.928711, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 71.5295, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.892807, "numnum:min:MEAN_BBYC": 31.948606, "numnum:sum:MEAN_BBYC": 65.841413, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 1275857, "numnum:sum:GN_POP": 3191957, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 765, "numnum:min:GTOPO30": 56, "numnum:sum:GTOPO30": 821, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 341, "numnum:min:UN_FID": 322, "numnum:sum:UN_FID": 663, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.88, "numnum:min:UN_LAT": 31.94, "numnum:sum:UN_LAT": 65.82000000000001, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 35.93, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 71.42, "numnum:count:POP1950": 2, "numnum:max:POP1950": 322, "numnum:min:POP1950": 90, "numnum:sum:POP1950": 412, "numnum:count:POP1955": 2, "numnum:max:POP1955": 425, "numnum:min:POP1955": 140, "numnum:sum:POP1955": 565, "numnum:count:POP1960": 2, "numnum:max:POP1960": 561, "numnum:min:POP1960": 218, "numnum:sum:POP1960": 779, "numnum:count:POP1965": 2, "numnum:max:POP1965": 733, "numnum:min:POP1965": 299, "numnum:sum:POP1965": 1032, "numnum:count:POP1970": 2, "numnum:max:POP1970": 923, "numnum:min:POP1970": 388, "numnum:sum:POP1970": 1311, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 500, "numnum:sum:POP1975": 2000, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 636, "numnum:sum:POP1980": 2259, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 736, "numnum:sum:POP1985": 2321, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1293, "numnum:min:POP1990": 851, "numnum:sum:POP1990": 2144, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1268, "numnum:min:POP1995": 973, "numnum:sum:POP1995": 2241, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1487, "numnum:min:POP2000": 1007, "numnum:sum:POP2000": 2494, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1777, "numnum:min:POP2005": 1042, "numnum:sum:POP2005": 2819, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1846, "numnum:min:POP2010": 1060, "numnum:sum:POP2010": 2906, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1941, "numnum:min:POP2015": 1106, "numnum:sum:POP2015": 3047, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2051, "numnum:min:POP2020": 1185, "numnum:sum:POP2020": 3236, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2119, "numnum:min:POP2025": 1268, "numnum:sum:POP2025": 3387, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2173, "numnum:min:POP2050": 1359, "numnum:sum:POP2050": 3532, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.500034, "numnum:min:LATITUDE": 31.778408, "numnum:sum:LATITUDE": 65.278442, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 36.299996, "numnum:min:LONGITUDE": 35.206626, "numnum:sum:LONGITUDE": 71.506622, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1029300, "numnum:sum:POP_MAX": 3495300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 801000, "numnum:sum:POP_MIN": 3267000, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1072567, "numnum:sum:POP_OTHER": 4417144, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 281184, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 451838, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1073782, "numnum:sum:MAX_POP10": 4472431, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1073782, "numnum:sum:MAX_POP20": 4939388, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1073782, "numnum:sum:MAX_POP50": 4939388, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1073782, "numnum:sum:MAX_POP300": 4939388, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 246, "numnum:sum:MIN_AREAKM": 778, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 246, "numnum:sum:MAX_AREAKM": 951, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 95, "numnum:sum:MIN_AREAMI": 300, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 95, "numnum:sum:MAX_AREAMI": 367, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 239, "numnum:sum:MIN_PERKM": 847, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 239, "numnum:sum:MAX_PERKM": 1007, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 149, "numnum:sum:MIN_PERMI": 527, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 149, "numnum:sum:MAX_PERMI": 626, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 36.05, "numnum:min:MIN_BBXMIN": 35.1, "numnum:sum:MIN_BBXMIN": 71.15, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 36.05, "numnum:min:MAX_BBXMIN": 35.1, "numnum:sum:MAX_BBXMIN": 71.15, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 36.474923, "numnum:min:MIN_BBXMAX": 35.316667, "numnum:sum:MIN_BBXMAX": 71.79159, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 36.55, "numnum:min:MAX_BBXMAX": 35.316667, "numnum:sum:MAX_BBXMAX": 71.866667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.283333, "numnum:min:MIN_BBYMIN": 31.683333, "numnum:sum:MIN_BBYMIN": 64.966666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.283333, "numnum:min:MAX_BBYMIN": 31.683333, "numnum:sum:MAX_BBYMIN": 64.966666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.611711, "numnum:min:MIN_BBYMAX": 31.991667, "numnum:sum:MIN_BBYMAX": 65.60337799999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 33.625, "numnum:min:MAX_BBYMAX": 31.991667, "numnum:sum:MAX_BBYMAX": 65.616667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 36.275119, "numnum:min:MEAN_BBXC": 35.210651, "numnum:sum:MEAN_BBXC": 71.48577, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.474283, "numnum:min:MEAN_BBYC": 31.809862, "numnum:sum:MEAN_BBYC": 65.284145, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 6, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 714000, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 714000, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 795, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 795, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 493, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.49, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 36.29, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 36.29, "numnum:count:POP1950": 2, "numnum:max:POP1950": 367, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 367, "numnum:count:POP1955": 2, "numnum:max:POP1955": 461, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 461, "numnum:count:POP1960": 2, "numnum:max:POP1960": 579, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 579, "numnum:count:POP1965": 2, "numnum:max:POP1965": 727, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 727, "numnum:count:POP1970": 2, "numnum:max:POP1970": 914, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 914, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1122, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1122, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1376, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1376, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1546, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1546, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1691, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1849, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2044, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2330, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2466, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2675, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2981, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3293, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3605, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 15.588078, "numnum:sum:LATITUDE": 89.107877, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 32.534179, "numnum:sum:LONGITUDE": 121.441599, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 1102000, "numnum:sum:POP_MAX": 10910000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 1093485, "numnum:sum:POP_MIN": 8122132, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 1154748, "numnum:sum:POP_OTHER": 8440213, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 37, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 1093486, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 1200842, "numnum:sum:MAX_POP10": 8894176, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 1200842, "numnum:sum:MAX_POP20": 8894176, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 1200842, "numnum:sum:MAX_POP50": 8894176, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 1200842, "numnum:sum:MAX_POP300": 11041564, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1126, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 630, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1408, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 435, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 243, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 544, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 365, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 768, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 424, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 955, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 227, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 477, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 263, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 593, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 32.341667, "numnum:sum:MIN_BBXMIN": 120.97500099999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 32.458333, "numnum:sum:MAX_BBXMIN": 121.091667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 32.691667, "numnum:sum:MIN_BBXMAX": 121.866667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 32.691667, "numnum:sum:MAX_BBXMAX": 121.866667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 15.325, "numnum:sum:MIN_BBYMIN": 88.391667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 15.325, "numnum:sum:MAX_BBYMIN": 88.391667, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 15.699422, "numnum:sum:MIN_BBYMAX": 89.516089, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 15.825, "numnum:sum:MAX_BBYMAX": 89.641667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 32.550462, "numnum:sum:MEAN_BBXC": 121.458531, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 15.559101, "numnum:sum:MEAN_BBYC": 89.019154, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 29, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 1093485, "numnum:sum:GN_POP": 8740645, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 41, "numnum:sum:GTOPO30": 1421, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 466, "numnum:min:UN_FID": 300, "numnum:sum:UN_FID": 1143, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 15.55, "numnum:sum:UN_LAT": 89.08, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 32.52, "numnum:sum:UN_LONG": 121.44, "numnum:count:POP1950": 3, "numnum:max:POP1950": 579, "numnum:min:POP1950": 183, "numnum:sum:POP1950": 1103, "numnum:count:POP1955": 3, "numnum:max:POP1955": 719, "numnum:min:POP1955": 252, "numnum:sum:POP1955": 1402, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 347, "numnum:sum:POP1960": 1904, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 477, "numnum:sum:POP1965": 2739, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 657, "numnum:sum:POP1970": 3505, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 886, "numnum:sum:POP1975": 4417, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 1042, "numnum:sum:POP1980": 5351, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 1123, "numnum:sum:POP1985": 6341, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 1175, "numnum:sum:POP1990": 7627, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 1142, "numnum:sum:POP1995": 8982, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 1111, "numnum:sum:POP2000": 10260, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 1103, "numnum:sum:POP2005": 10948, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 1102, "numnum:sum:POP2010": 10910, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 12178, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 13797, "numnum:count:POP2025": 3, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 15464, "numnum:count:POP2050": 3, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 17099, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 9.03331, "numnum:min:LATITUDE": 4.829975, "numnum:sum:LATITUDE": 13.863285000000002, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 38.700004, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 70.28003, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 25, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3100000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 3211975, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 2869704, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 3125628, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 373303, "numnum:min:GEONAMEID": 344979, "numnum:sum:GEONAMEID": 718282, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 3096062, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 3288461, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 3603887, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3450173, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3450173, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 462, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 483, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 1203, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 178, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 186, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 465, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 427, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 1355, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 265, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 841, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 38.575, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 70.15, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 38.575, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 70.15, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 38.966667, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 70.591667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 39.483333, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 71.108333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 8.033333, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 12.850000000000002, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 8.67178, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 13.488447, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 9.125, "numnum:min:MIN_BBYMAX": 4.883333, "numnum:sum:MIN_BBYMAX": 14.008333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 9.125, "numnum:min:MAX_BBYMAX": 4.883333, "numnum:sum:MAX_BBYMAX": 14.008333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 38.919464, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 70.52096399999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 8.825709, "numnum:min:MEAN_BBYC": 4.845167, "numnum:sum:MEAN_BBYC": 13.670876, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 44, "numnum:sum:ADMIN1_COD": 88, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2757729, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 551, "numnum:sum:GTOPO30": 2914, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 180, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 180, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 9.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.02, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 38.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 38.7, "numnum:count:POP1950": 2, "numnum:max:POP1950": 392, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 392, "numnum:count:POP1955": 2, "numnum:max:POP1955": 451, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 451, "numnum:count:POP1960": 2, "numnum:max:POP1960": 519, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 519, "numnum:count:POP1965": 2, "numnum:max:POP1965": 597, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 597, "numnum:count:POP1970": 2, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 2, "numnum:max:POP1975": 926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 926, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1175, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1175, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1476, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1476, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1791, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1791, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2157, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2157, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2493, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2493, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2902, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2902, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3100, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3453, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3453, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4184, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4184, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5083, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5083, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6156, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6156, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 63.092798, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 71.427774, "numnum:min:LONGITUDE": 32.583324, "numnum:sum:LONGITUDE": 147.1591, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1420000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 2688604, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1353189, "numnum:min:POP_MIN": 325021, "numnum:sum:POP_MIN": 2282223, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2153702, "numnum:min:POP_OTHER": 317445, "numnum:sum:POP_OTHER": 2806148, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1526273, "numnum:min:GEONAMEID": 223817, "numnum:sum:GEONAMEID": 1982512, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2155592, "numnum:min:MAX_POP10": 325021, "numnum:sum:MAX_POP10": 2815614, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2153391, "numnum:min:MAX_POP20": 325021, "numnum:sum:MAX_POP20": 2813413, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2322955, "numnum:min:MAX_POP50": 325021, "numnum:sum:MAX_POP50": 2982977, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2322955, "numnum:min:MAX_POP300": 325021, "numnum:sum:MAX_POP300": 2982977, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 405, "numnum:min:MIN_AREAKM": 42, "numnum:sum:MIN_AREAKM": 551, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 465, "numnum:min:MAX_AREAKM": 42, "numnum:sum:MAX_AREAKM": 611, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 156, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 212, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 180, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 236, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 391, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 536, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 470, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 615, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 243, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 333, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 292, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 382, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 71.325, "numnum:min:MIN_BBXMIN": 32.45, "numnum:sum:MIN_BBXMIN": 146.84166700000004, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 71.325, "numnum:min:MAX_BBXMIN": 32.5, "numnum:sum:MAX_BBXMIN": 146.89166699999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 71.533333, "numnum:min:MIN_BBXMAX": 32.8, "numnum:sum:MIN_BBXMAX": 147.5, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 71.533333, "numnum:min:MAX_BBXMAX": 32.8, "numnum:sum:MAX_BBXMAX": 147.5, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 62.666666000000009, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 62.800052, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 63.325, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 63.325, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 71.43275, "numnum:min:MEAN_BBXC": 32.614686, "numnum:sum:MEAN_BBXC": 147.176603, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 63.059752, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 30, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1353189, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 2322684, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1206, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1546, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 507, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 507, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0.32, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0.32, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 32.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 32.57, "numnum:count:POP1950": 3, "numnum:max:POP1950": 95, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 95, "numnum:count:POP1955": 3, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 3, "numnum:max:POP1960": 137, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 137, "numnum:count:POP1965": 3, "numnum:max:POP1965": 222, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 222, "numnum:count:POP1970": 3, "numnum:max:POP1970": 340, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 340, "numnum:count:POP1975": 3, "numnum:max:POP1975": 398, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 398, "numnum:count:POP1980": 3, "numnum:max:POP1980": 469, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 469, "numnum:count:POP1985": 3, "numnum:max:POP1985": 595, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 595, "numnum:count:POP1990": 3, "numnum:max:POP1990": 755, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 755, "numnum:count:POP1995": 3, "numnum:max:POP1995": 912, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 912, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1097, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1097, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1318, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1318, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1420, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1420, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1597, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1597, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1979, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1979, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2506, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2506, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3198, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3198, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.307616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 15.354733, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 40.248093999999998, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.206593, "numnum:min:LONGITUDE": 38.933324, "numnum:sum:LONGITUDE": 127.205227, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2008000, "numnum:min:POP_MAX": 477876, "numnum:sum:POP_MAX": 3106678, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1835853, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 2646801, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1742507, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 2576619, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 343300, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 471726, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1835853, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 2703673, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1835853, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 2703673, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1835853, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 2703673, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1835853, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2456655, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 160, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 290, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 160, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 290, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 62, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 112, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 62, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 112, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 132, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 262, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 132, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 262, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 163, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 163, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.15, "numnum:min:MIN_BBXMIN": 38.858333, "numnum:sum:MIN_BBXMIN": 127.033333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.15, "numnum:min:MAX_BBXMIN": 38.858333, "numnum:sum:MAX_BBXMIN": 127.033333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.258333, "numnum:min:MIN_BBXMAX": 38.975, "numnum:sum:MIN_BBXMAX": 127.33333300000001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.258333, "numnum:min:MAX_BBXMAX": 38.975, "numnum:sum:MAX_BBXMAX": 127.33333300000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 15.266667, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 40.008334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 15.266667, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 40.008334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 15.508333, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 40.508333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 15.508333, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 40.508333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.206615, "numnum:min:MEAN_BBXC": 38.926873, "numnum:sum:MEAN_BBXC": 127.197938, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 15.376031, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 40.260442999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 20, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 563930, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1041806, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2360, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 3607, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 587, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 15.36, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.36, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.2, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 44.2, "numnum:count:POP1950": 3, "numnum:max:POP1950": 46, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 46, "numnum:count:POP1955": 3, "numnum:max:POP1955": 58, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 58, "numnum:count:POP1960": 3, "numnum:max:POP1960": 72, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 72, "numnum:count:POP1965": 3, "numnum:max:POP1965": 89, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 89, "numnum:count:POP1970": 3, "numnum:max:POP1970": 111, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 111, "numnum:count:POP1975": 3, "numnum:max:POP1975": 141, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 141, "numnum:count:POP1980": 3, "numnum:max:POP1980": 238, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 238, "numnum:count:POP1985": 3, "numnum:max:POP1985": 402, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 402, "numnum:count:POP1990": 3, "numnum:max:POP1990": 653, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 653, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1034, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1034, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1365, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1365, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1801, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1801, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2008, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2008, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2345, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2345, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2955, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2955, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3636, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3636, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4382, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4382, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.873079, "numnum:min:LATITUDE": 35.671943, "numnum:sum:LATITUDE": 78.54502199999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 74.585204, "numnum:min:LONGITUDE": 51.424344, "numnum:sum:LONGITUDE": 126.009548, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 837000, "numnum:sum:POP_MAX": 8710000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 804212, "numnum:sum:POP_MIN": 7957521, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 781714, "numnum:sum:POP_OTHER": 8990726, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1528675, "numnum:min:GEONAMEID": 112931, "numnum:sum:GEONAMEID": 1641606, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 804212, "numnum:sum:MAX_POP10": 9063193, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 804212, "numnum:sum:MAX_POP20": 9063193, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 804212, "numnum:sum:MAX_POP50": 9063193, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 804212, "numnum:sum:MAX_POP300": 9063193, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 496, "numnum:min:MIN_AREAKM": 245, "numnum:sum:MIN_AREAKM": 741, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 245, "numnum:sum:MAX_AREAKM": 741, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 191, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 285, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 285, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 245, "numnum:min:MIN_PERKM": 190, "numnum:sum:MIN_PERKM": 435, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 245, "numnum:min:MAX_PERKM": 190, "numnum:sum:MAX_PERKM": 435, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 118, "numnum:sum:MIN_PERMI": 270, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 152, "numnum:min:MAX_PERMI": 118, "numnum:sum:MAX_PERMI": 270, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 74.425, "numnum:min:MIN_BBXMIN": 51.216667, "numnum:sum:MIN_BBXMIN": 125.641667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 74.425, "numnum:min:MAX_BBXMIN": 51.216667, "numnum:sum:MAX_BBXMIN": 125.641667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 74.8, "numnum:min:MIN_BBXMAX": 51.6, "numnum:sum:MIN_BBXMAX": 126.4, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 74.8, "numnum:min:MAX_BBXMAX": 51.6, "numnum:sum:MAX_BBXMAX": 126.4, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.766667, "numnum:min:MIN_BBYMIN": 35.55, "numnum:sum:MIN_BBYMIN": 78.316667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.766667, "numnum:min:MAX_BBYMIN": 35.55, "numnum:sum:MAX_BBYMIN": 78.316667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 43, "numnum:min:MIN_BBYMAX": 35.825, "numnum:sum:MIN_BBYMAX": 78.825, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 43, "numnum:min:MAX_BBYMAX": 35.825, "numnum:sum:MAX_BBYMAX": 78.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 74.603823, "numnum:min:MEAN_BBXC": 51.416848, "numnum:sum:MEAN_BBXC": 126.02067100000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.872917, "numnum:min:MEAN_BBYC": 35.709171, "numnum:sum:MEAN_BBYC": 78.582088, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 900000, "numnum:sum:GN_POP": 8053309, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": 772, "numnum:sum:GTOPO30": 1921, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 340, "numnum:min:UN_FID": 297, "numnum:sum:UN_FID": 637, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 42.87, "numnum:min:UN_LAT": 35.77, "numnum:sum:UN_LAT": 78.64, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 74.77, "numnum:min:UN_LONG": 51.44, "numnum:sum:UN_LONG": 126.21, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 150, "numnum:sum:POP1950": 1191, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 186, "numnum:sum:POP1955": 1582, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 236, "numnum:sum:POP1960": 2109, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 322, "numnum:sum:POP1965": 2833, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 433, "numnum:sum:POP1970": 3723, "numnum:count:POP1975": 2, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 485, "numnum:sum:POP1975": 4758, "numnum:count:POP1980": 2, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 538, "numnum:sum:POP1980": 5617, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 583, "numnum:sum:POP1985": 6422, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 635, "numnum:sum:POP1990": 7000, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 703, "numnum:sum:POP1995": 7390, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 770, "numnum:sum:POP2000": 7898, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 817, "numnum:sum:POP2005": 8470, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 837, "numnum:sum:POP2010": 8710, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 869, "numnum:sum:POP2015": 9090, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 934, "numnum:sum:POP2020": 9766, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 1011, "numnum:sum:POP2025": 10415, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 1096, "numnum:sum:POP2050": 10910, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 74.575195, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 43.805012, "numnum:min:LATITUDE": 40.395272, "numnum:sum:LATITUDE": 84.200284, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 49.862217, "numnum:sum:LONGITUDE": 137.43722300000003, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2151000, "numnum:min:POP_MAX": 2122300, "numnum:sum:POP_MAX": 4273300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1892000, "numnum:min:POP_MIN": 1508225, "numnum:sum:POP_MIN": 3400225, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2044401, "numnum:min:POP_OTHER": 1518801, "numnum:sum:POP_OTHER": 3563202, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 587084, "numnum:sum:GEONAMEID": 2116186, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2066046, "numnum:min:MAX_POP10": 1581087, "numnum:sum:MAX_POP10": 3647133, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2066046, "numnum:min:MAX_POP20": 1581475, "numnum:sum:MAX_POP20": 3647521, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2066046, "numnum:min:MAX_POP50": 1581475, "numnum:sum:MAX_POP50": 3647521, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2066046, "numnum:min:MAX_POP300": 1581475, "numnum:sum:MAX_POP300": 3647521, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 361, "numnum:min:MIN_AREAKM": 246, "numnum:sum:MIN_AREAKM": 607, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 361, "numnum:min:MAX_AREAKM": 249, "numnum:sum:MAX_AREAKM": 610, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 139, "numnum:min:MIN_AREAMI": 95, "numnum:sum:MIN_AREAMI": 234, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 139, "numnum:min:MAX_AREAMI": 96, "numnum:sum:MAX_AREAMI": 235, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 318, "numnum:min:MIN_PERKM": 174, "numnum:sum:MIN_PERKM": 492, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 318, "numnum:min:MAX_PERKM": 179, "numnum:sum:MAX_PERKM": 497, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 198, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 306, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 198, "numnum:min:MAX_PERMI": 111, "numnum:sum:MAX_PERMI": 309, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 49.7, "numnum:sum:MIN_BBXMIN": 137.058333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 49.716667, "numnum:sum:MAX_BBXMIN": 137.075, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 50.016667, "numnum:sum:MIN_BBXMAX": 137.741667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 50.016667, "numnum:sum:MAX_BBXMAX": 137.741667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 43.641667, "numnum:min:MIN_BBYMIN": 40.316667, "numnum:sum:MIN_BBYMIN": 83.95833400000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 43.641667, "numnum:min:MAX_BBYMIN": 40.316667, "numnum:sum:MAX_BBYMIN": 83.95833400000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 44.016667, "numnum:min:MIN_BBYMAX": 40.5, "numnum:sum:MIN_BBYMAX": 84.516667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 44.016667, "numnum:min:MAX_BBYMAX": 40.5, "numnum:sum:MAX_BBYMAX": 84.516667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 49.881373, "numnum:sum:MEAN_BBXC": 137.459867, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 43.854525, "numnum:min:MEAN_BBYC": 40.41632, "numnum:sum:MEAN_BBYC": 84.27084500000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 22, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1508225, "numnum:min:GN_POP": 1116513, "numnum:sum:GN_POP": 2624738, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 915, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 945, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 200, "numnum:min:UN_FID": 118, "numnum:sum:UN_FID": 318, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 40.32, "numnum:sum:UN_LAT": 84.1, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 49.81, "numnum:sum:UN_LONG": 137.39, "numnum:count:POP1950": 2, "numnum:max:POP1950": 897, "numnum:min:POP1950": 253, "numnum:sum:POP1950": 1150, "numnum:count:POP1955": 2, "numnum:max:POP1955": 940, "numnum:min:POP1955": 312, "numnum:sum:POP1955": 1252, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1005, "numnum:min:POP1960": 384, "numnum:sum:POP1960": 1389, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1132, "numnum:min:POP1965": 472, "numnum:sum:POP1965": 1604, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1274, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 1855, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1429, "numnum:min:POP1975": 715, "numnum:sum:POP1975": 2144, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1574, "numnum:min:POP1980": 881, "numnum:sum:POP1980": 2455, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1660, "numnum:min:POP1985": 1029, "numnum:sum:POP1985": 2689, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1733, "numnum:min:POP1990": 1161, "numnum:sum:POP1990": 2894, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1766, "numnum:min:POP1995": 1417, "numnum:sum:POP1995": 3183, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1806, "numnum:min:POP2000": 1730, "numnum:sum:POP2000": 3536, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2025, "numnum:min:POP2005": 1867, "numnum:sum:POP2005": 3892, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2151, "numnum:min:POP2010": 1892, "numnum:sum:POP2010": 4043, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 1931, "numnum:sum:POP2015": 4271, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 2006, "numnum:sum:POP2020": 4626, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 2097, "numnum:sum:POP2025": 4948, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3038, "numnum:min:POP2050": 2187, "numnum:sum:POP2050": 5225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.229996, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 49.870829, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 102.052716, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 1379000, "numnum:sum:POP_MAX": 5844000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 1137347, "numnum:sum:POP_MIN": 5343308, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 1166878, "numnum:sum:POP_OTHER": 6315656, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 400633, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 1193251, "numnum:sum:MAX_POP10": 6516004, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 2244726, "numnum:sum:MAX_POP20": 7567479, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 2244726, "numnum:sum:MAX_POP50": 7567479, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 2244726, "numnum:sum:MAX_POP300": 7567479, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 187, "numnum:sum:MIN_AREAKM": 1041, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 407, "numnum:sum:MAX_AREAKM": 1261, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 72, "numnum:sum:MIN_AREAMI": 402, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 157, "numnum:sum:MAX_AREAMI": 487, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 617, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 278, "numnum:sum:MAX_PERKM": 737, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 383, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 173, "numnum:sum:MAX_PERMI": 458, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 101.691667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 101.691667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 102.370475, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 102.466666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.1, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 49.61666700000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.1, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 49.61666700000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 25.308333, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 50.141666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 25.433333, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 50.266666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 102.102183, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 25.258666, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 49.937650000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 13, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 1137347, "numnum:sum:GN_POP": 5343308, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 627, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 444, "numnum:sum:UN_FID": 942, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.27, "numnum:min:UN_LAT": 24.65, "numnum:sum:UN_LAT": 49.92, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 46.77, "numnum:sum:UN_LONG": 102.09, "numnum:count:POP1950": 2, "numnum:max:POP1950": 111, "numnum:min:POP1950": 20, "numnum:sum:POP1950": 131, "numnum:count:POP1955": 2, "numnum:max:POP1955": 131, "numnum:min:POP1955": 28, "numnum:sum:POP1955": 159, "numnum:count:POP1960": 2, "numnum:max:POP1960": 156, "numnum:min:POP1960": 40, "numnum:sum:POP1960": 196, "numnum:count:POP1965": 2, "numnum:max:POP1965": 227, "numnum:min:POP1965": 51, "numnum:sum:POP1965": 278, "numnum:count:POP1970": 2, "numnum:max:POP1970": 408, "numnum:min:POP1970": 80, "numnum:sum:POP1970": 488, "numnum:count:POP1975": 2, "numnum:max:POP1975": 710, "numnum:min:POP1975": 167, "numnum:sum:POP1975": 877, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 254, "numnum:sum:POP1980": 1309, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 345, "numnum:sum:POP1985": 1911, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 473, "numnum:sum:POP1990": 2798, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 650, "numnum:sum:POP1995": 3685, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 938, "numnum:sum:POP2000": 4505, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 1272, "numnum:sum:POP2005": 5465, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 1379, "numnum:sum:POP2010": 5844, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 1516, "numnum:sum:POP2015": 6372, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 1709, "numnum:sum:POP2020": 7114, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 1894, "numnum:sum:POP2025": 7760, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 2077, "numnum:sum:POP2050": 8352, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 25.286556, "numnum:sum:LATITUDE": 51.522692, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 51.532968, "numnum:min:LONGITUDE": 50.583052, "numnum:sum:LONGITUDE": 102.11601999999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1450000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 2013920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 731310, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 888784, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 563666, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 563666, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 290340, "numnum:min:GEONAMEID": 290030, "numnum:sum:GEONAMEID": 580370, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 731310, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 1295230, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 731310, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 1295230, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 731310, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 1295230, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 731310, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 1295230, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 270, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 448, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 270, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 448, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 104, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 173, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 104, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 173, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 205, "numnum:min:MIN_PERKM": 184, "numnum:sum:MIN_PERKM": 389, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 205, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 389, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 127, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 242, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 127, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 242, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 51.358333, "numnum:min:MIN_BBXMIN": 50.441667, "numnum:sum:MIN_BBXMIN": 101.80000000000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 51.358333, "numnum:min:MAX_BBXMIN": 50.441667, "numnum:sum:MAX_BBXMIN": 101.80000000000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 51.583333, "numnum:min:MIN_BBXMAX": 50.633333, "numnum:sum:MIN_BBXMAX": 102.216666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 51.583333, "numnum:min:MAX_BBXMAX": 50.633333, "numnum:sum:MAX_BBXMAX": 102.216666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 25.158333, "numnum:sum:MIN_BBYMIN": 51.208332999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 25.158333, "numnum:sum:MAX_BBYMIN": 51.208332999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 25.408333, "numnum:sum:MIN_BBYMAX": 51.658333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 25.408333, "numnum:sum:MAX_BBYMAX": 51.658333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 51.468439, "numnum:min:MEAN_BBXC": 50.542529, "numnum:sum:MEAN_BBXC": 102.01096799999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 25.281154, "numnum:sum:MEAN_BBYC": 51.445917, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 3, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 344939, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 492013, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9978, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 34.51669, "numnum:min:LATITUDE": 24.466684, "numnum:sum:LATITUDE": 58.983374, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 69.18326, "numnum:min:LONGITUDE": 54.366593, "numnum:sum:LONGITUDE": 123.54985300000002, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3277000, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 3880492, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3043532, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 3603762, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3475519, "numnum:min:POP_OTHER": 560230, "numnum:sum:POP_OTHER": 4035749, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1138958, "numnum:min:GEONAMEID": 292968, "numnum:sum:GEONAMEID": 1431926, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3720671, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 4280901, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3720671, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 4280901, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 4803365, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 5363595, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4793793, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 5354023, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 594, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 690, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1471, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 1567, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 229, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 266, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 568, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 605, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 409, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 496, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1100, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 1187, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 254, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 308, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 683, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 737, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 68.866667, "numnum:min:MIN_BBXMIN": 54.316667, "numnum:sum:MIN_BBXMIN": 123.183334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 68.866667, "numnum:min:MAX_BBXMIN": 54.316667, "numnum:sum:MAX_BBXMIN": 123.183334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 69.308333, "numnum:min:MIN_BBXMAX": 54.525, "numnum:sum:MIN_BBXMAX": 123.83333300000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 69.783333, "numnum:min:MAX_BBXMAX": 54.525, "numnum:sum:MAX_BBXMAX": 124.308333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 34.433333, "numnum:min:MIN_BBYMIN": 24.391667, "numnum:sum:MIN_BBYMIN": 58.825, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 34.433333, "numnum:min:MAX_BBYMIN": 24.391667, "numnum:sum:MAX_BBYMIN": 58.825, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 34.768813, "numnum:min:MIN_BBYMAX": 24.525, "numnum:sum:MIN_BBYMAX": 59.293813, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.166667, "numnum:min:MAX_BBYMAX": 24.525, "numnum:sum:MAX_BBYMAX": 59.691666999999998, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 69.144173, "numnum:min:MEAN_BBXC": 54.410671, "numnum:sum:MEAN_BBXC": 123.554844, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 34.688498, "numnum:min:MEAN_BBYC": 24.444343, "numnum:sum:MEAN_BBYC": 59.132841, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3043532, "numnum:min:GN_POP": 603492, "numnum:sum:GN_POP": 3647024, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 1822, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 320, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 320, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 34.53, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 69.13, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 69.13, "numnum:count:POP1950": 2, "numnum:max:POP1950": 129, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 129, "numnum:count:POP1955": 2, "numnum:max:POP1955": 184, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 184, "numnum:count:POP1960": 2, "numnum:max:POP1960": 263, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 263, "numnum:count:POP1965": 2, "numnum:max:POP1965": 369, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 369, "numnum:count:POP1970": 2, "numnum:max:POP1970": 472, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 472, "numnum:count:POP1975": 2, "numnum:max:POP1975": 674, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 674, "numnum:count:POP1980": 2, "numnum:max:POP1980": 978, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 978, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1160, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1160, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1306, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1306, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1616, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1616, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1963, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1963, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2994, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2994, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3277, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3277, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3768, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3768, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4730, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4730, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5836, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5836, "numnum:count:POP2050": 2, "numnum:max:POP2050": 7175, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7175, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 37.949995, "numnum:sum:LATITUDE": 76.51003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 68.773879, "numnum:min:LONGITUDE": 58.383299, "numnum:sum:LONGITUDE": 127.15717799999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1086244, "numnum:min:POP_MAX": 727700, "numnum:sum:POP_MAX": 1813944, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 679400, "numnum:min:POP_MIN": 577982, "numnum:sum:POP_MIN": 1257382, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1081361, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 1637409, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 162183, "numnum:sum:GEONAMEID": 1384057, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1086244, "numnum:min:MAX_POP10": 577982, "numnum:sum:MAX_POP10": 1664226, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1086244, "numnum:min:MAX_POP20": 589324, "numnum:sum:MAX_POP20": 1675568, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1086244, "numnum:min:MAX_POP50": 589324, "numnum:sum:MAX_POP50": 1675568, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1086244, "numnum:min:MAX_POP300": 589324, "numnum:sum:MAX_POP300": 1675568, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 415, "numnum:min:MIN_AREAKM": 108, "numnum:sum:MIN_AREAKM": 523, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 415, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 543, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 160, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 202, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 160, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 209, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 520, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 411, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 555, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 323, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 255, "numnum:min:MAX_PERMI": 90, "numnum:sum:MAX_PERMI": 345, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 68.641667, "numnum:min:MIN_BBXMIN": 58.2, "numnum:sum:MIN_BBXMIN": 126.841667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 68.641667, "numnum:min:MAX_BBXMIN": 58.28637, "numnum:sum:MAX_BBXMIN": 126.92803699999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 69.15, "numnum:min:MIN_BBXMAX": 58.483333, "numnum:sum:MIN_BBXMAX": 127.63333300000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 69.15, "numnum:min:MAX_BBXMAX": 58.483333, "numnum:sum:MAX_BBXMAX": 127.63333300000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 37.866667, "numnum:sum:MIN_BBYMIN": 76.283334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 37.866667, "numnum:sum:MAX_BBYMIN": 76.283334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 38.016667, "numnum:sum:MIN_BBYMAX": 76.691667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 38.016667, "numnum:sum:MAX_BBYMAX": 76.691667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 68.864837, "numnum:min:MEAN_BBXC": 58.371343, "numnum:sum:MEAN_BBXC": 127.23617999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 37.94619, "numnum:sum:MEAN_BBYC": 76.488944, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 727700, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 1270807, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 808, "numnum:min:GTOPO30": 219, "numnum:sum:GTOPO30": 1027, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 58.403320, 37.961523 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 59.380002, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 73.166634, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 177.126624, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1100000, "numnum:min:POP_MAX": 734697, "numnum:sum:POP_MAX": 2614697, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 875388, "numnum:min:POP_MIN": 586861, "numnum:sum:POP_MIN": 2063849, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 893673, "numnum:min:POP_OTHER": 586861, "numnum:sum:POP_OTHER": 2329926, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1176615, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 1517555, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 875388, "numnum:min:MAX_POP10": 586861, "numnum:sum:MAX_POP10": 2204605, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 875388, "numnum:min:MAX_POP20": 586861, "numnum:sum:MAX_POP20": 2204605, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7482035, "numnum:min:MAX_POP50": 586861, "numnum:sum:MAX_POP50": 8944284, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7482969, "numnum:min:MAX_POP300": 586861, "numnum:sum:MAX_POP300": 8945218, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 772, "numnum:min:MIN_AREAKM": 99, "numnum:sum:MIN_AREAKM": 975, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 5463, "numnum:min:MAX_AREAKM": 99, "numnum:sum:MAX_AREAKM": 5666, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 298, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 376, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 2109, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 2187, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 734, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 4154, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 4343, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 457, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 2581, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 2699, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 72.286464, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 175.869797, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 73.033333, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 176.616666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 73.516667, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 177.533334, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 73.816667, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 177.83333399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 58.25833300000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 58.816666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 59.525001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 60.291667000000007, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 73.182617, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 176.98847899999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 59.211484, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2587183, "numnum:min:GN_POP": 601600, "numnum:sum:GN_POP": 3985783, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 497, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 605, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 855, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 35.75, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 73.06, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 118.4, "numnum:count:POP1950": 3, "numnum:max:POP1950": 69, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 105, "numnum:count:POP1955": 3, "numnum:max:POP1955": 73, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 114, "numnum:count:POP1960": 3, "numnum:max:POP1960": 94, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 139, "numnum:count:POP1965": 3, "numnum:max:POP1965": 146, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 202, "numnum:count:POP1970": 3, "numnum:max:POP1970": 272, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 342, "numnum:count:POP1975": 3, "numnum:max:POP1975": 445, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 552, "numnum:count:POP1980": 3, "numnum:max:POP1980": 551, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 740, "numnum:count:POP1985": 3, "numnum:max:POP1985": 747, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1007, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1378, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1147, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1599, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1201, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1795, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1415, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2147, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1880, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1500, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2351, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1794, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2782, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2142, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3290, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2529, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3849, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 58.579102, 23.604262 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 28.600023, "numnum:min:LATITUDE": 12.969995, "numnum:sum:LATITUDE": 41.570018000000008, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 77.56001, "numnum:min:LONGITUDE": 77.19998, "numnum:sum:LONGITUDE": 154.75999000000003, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 3, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 3, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 6787000, "numnum:min:POP_MAX": 317797, "numnum:sum:POP_MAX": 7104797, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5104047, "numnum:min:POP_MIN": 317797, "numnum:sum:POP_MIN": 5421844, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8102712, "numnum:min:POP_OTHER": 8060107, "numnum:sum:POP_OTHER": 16162819, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1277333, "numnum:min:GEONAMEID": 1261481, "numnum:sum:GEONAMEID": 2538814, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 8181096, "numnum:sum:MAX_POP10": 16942143, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13414375, "numnum:min:MAX_POP20": 8181096, "numnum:sum:MAX_POP20": 21595471, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 32426336, "numnum:min:MAX_POP50": 8553953, "numnum:sum:MAX_POP50": 40980289, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 32424761, "numnum:min:MAX_POP300": 8553953, "numnum:sum:MAX_POP300": 40978714, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2443, "numnum:min:MIN_AREAKM": 864, "numnum:sum:MIN_AREAKM": 3307, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 2836, "numnum:sum:MAX_AREAKM": 189395, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 943, "numnum:min:MIN_AREAMI": 334, "numnum:sum:MIN_AREAMI": 1277, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 1095, "numnum:sum:MAX_AREAMI": 73125, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 2152, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 2412, "numnum:sum:MAX_PERKM": 132708, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 1338, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 1499, "numnum:sum:MAX_PERMI": 82461, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 77.275, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 148.308333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 77.275, "numnum:min:MAX_BBXMIN": 76.943289, "numnum:sum:MAX_BBXMIN": 154.218289, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 77.996673, "numnum:min:MIN_BBXMAX": 77.43183, "numnum:sum:MIN_BBXMAX": 155.428503, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 82.566667, "numnum:min:MAX_BBXMAX": 78.15, "numnum:sum:MAX_BBXMAX": 160.716667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 24, "numnum:min:MIN_BBYMIN": 12.325, "numnum:sum:MIN_BBYMIN": 36.325, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 28.152007, "numnum:min:MAX_BBYMIN": 12.325, "numnum:sum:MAX_BBYMIN": 40.477007, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 28.738629, "numnum:min:MIN_BBYMAX": 13.333333, "numnum:sum:MIN_BBYMAX": 42.071962, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 33.466667, "numnum:min:MAX_BBYMAX": 13.333333, "numnum:sum:MAX_BBYMAX": 46.8, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 77.703019, "numnum:min:MEAN_BBXC": 77.27294500000001, "numnum:sum:MEAN_BBXC": 154.975964, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 28.382537, "numnum:min:MEAN_BBYC": 12.841733, "numnum:sum:MEAN_BBYC": 41.22427, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5104047, "numnum:min:GN_POP": 317797, "numnum:sum:GN_POP": 5421844, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 914, "numnum:min:GTOPO30": 205, "numnum:sum:GTOPO30": 1119, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 219, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 219, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 12.97, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 12.97, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 77.58, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 77.58, "numnum:count:POP1950": 2, "numnum:max:POP1950": 746, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 746, "numnum:count:POP1955": 2, "numnum:max:POP1955": 939, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 939, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1166, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1166, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1377, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1377, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1615, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1615, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2111, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2111, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2812, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2812, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3395, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3395, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4036, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4036, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4744, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4744, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5567, "numnum:count:POP2005": 2, "numnum:max:POP2005": 6465, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6465, "numnum:count:POP2010": 2, "numnum:max:POP2010": 6787, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6787, "numnum:count:POP2015": 2, "numnum:max:POP2015": 7229, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7229, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7967, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7967, "numnum:count:POP2025": 2, "numnum:max:POP2025": 8795, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8795, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9719, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9719, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 27.716692, "numnum:min:LATITUDE": 6.931966, "numnum:sum:LATITUDE": 53.665648000000008, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 85.316642, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 238.031382, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 217000, "numnum:sum:POP_MAX": 20090000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 217000, "numnum:sum:POP_MIN": 13803836, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 1099610, "numnum:sum:POP_OTHER": 16016669, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1275339, "numnum:sum:GEONAMEID": 6024506, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 1154222, "numnum:sum:MAX_POP10": 16633548, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 2297630, "numnum:sum:MAX_POP20": 25190370, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 20149761, "numnum:min:MAX_POP50": 2297630, "numnum:sum:MAX_POP50": 25190370, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 20149761, "numnum:min:MAX_POP300": 2297630, "numnum:sum:MAX_POP300": 32207222, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1054, "numnum:min:MIN_AREAKM": 233, "numnum:sum:MIN_AREAKM": 1729, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 6238, "numnum:min:MAX_AREAKM": 580, "numnum:sum:MAX_AREAKM": 8297, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 407, "numnum:min:MIN_AREAMI": 90, "numnum:sum:MIN_AREAMI": 668, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 2408, "numnum:min:MAX_AREAMI": 224, "numnum:sum:MAX_AREAMI": 3203, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 847, "numnum:min:MIN_PERKM": 228, "numnum:sum:MIN_PERKM": 1319, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5343, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 6875, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 526, "numnum:min:MIN_PERMI": 142, "numnum:sum:MIN_PERMI": 820, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3320, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 4272, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 85.108333, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 237.66666600000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 85.108333, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 237.683333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 85.450066, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 238.530773, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 85.675, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 239.77499999999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 27.541667, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 52.350001000000009, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 27.669456, "numnum:min:MAX_BBYMIN": 6.854447, "numnum:sum:MAX_BBYMIN": 53.41557, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 27.85, "numnum:min:MIN_BBYMAX": 7.633333, "numnum:sum:MIN_BBYMAX": 54.791666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 27.85, "numnum:min:MAX_BBYMAX": 7.8, "numnum:sum:MAX_BBYMAX": 55.141667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 85.356097, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 238.312722, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 27.697735, "numnum:min:MEAN_BBYC": 7.222799, "numnum:sum:MEAN_BBYC": 54.109688, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 217000, "numnum:sum:GN_POP": 14351107, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 1317, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 1317, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1304, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 2243, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 378, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 631, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 27.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 46.78, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 85.31, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 158.13, "numnum:count:POP1950": 3, "numnum:max:POP1950": 2857, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2961, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3432, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3542, "numnum:count:POP1960": 3, "numnum:max:POP1960": 4060, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4179, "numnum:count:POP1965": 3, "numnum:max:POP1965": 4854, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4986, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5811, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5958, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7082, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7262, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8658, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8883, "numnum:count:POP1985": 3, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10638, "numnum:count:POP1990": 3, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 12706, "numnum:count:POP1995": 3, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 14620, "numnum:count:POP2000": 3, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 16730, "numnum:count:POP2005": 3, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 19017, "numnum:count:POP2010": 3, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 19873, "numnum:count:POP2015": 3, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 21101, "numnum:count:POP2020": 3, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 23230, "numnum:count:POP2025": 3, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25629, "numnum:count:POP2050": 3, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 28292, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 27.472986, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 54.134663, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 73.499947, "numnum:sum:LONGITUDE": 251.463637, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 14787000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 14998603, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 4631392, "numnum:min:POP_MIN": 79185, "numnum:sum:POP_MIN": 4814270, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 7783716, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7783716, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 29, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3174186, "numnum:min:GEONAMEID": 1252416, "numnum:sum:GEONAMEID": 5701606, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 8143162, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 8530627, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 18577087, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 18964552, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 49103981, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 88040369, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 2530, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 53372, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 977, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 20607, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 65, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 72, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 35568, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 40, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 45, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 22101, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 73.5, "numnum:sum:MIN_BBXMIN": 248.575, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 73.5, "numnum:sum:MAX_BBXMIN": 250.806111, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 252.04166699999997, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 73.516667, "numnum:sum:MAX_BBXMAX": 252.65542599999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 27.408333, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 51.441666999999998, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 27.408333, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 53.631849, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 27.558333, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 54.317157, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 27.558333, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 57.001627, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 73.508333, "numnum:sum:MEAN_BBXC": 251.18626999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 27.477943, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 54.269452, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 17, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 4631392, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 4732206, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 2320, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 16, "numnum:sum:GTOPO30": 3425, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 245, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 245, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 22.54, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 88.33, "numnum:count:POP1950": 3, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4513, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5055, "numnum:count:POP1960": 3, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 5652, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 6261, "numnum:count:POP1970": 3, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 6926, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7888, "numnum:count:POP1980": 3, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9030, "numnum:count:POP1985": 3, "numnum:max:POP1985": 9946, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 9946, "numnum:count:POP1990": 3, "numnum:max:POP1990": 10890, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10890, "numnum:count:POP1995": 3, "numnum:max:POP1995": 11924, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11924, "numnum:count:POP2000": 3, "numnum:max:POP2000": 13058, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13058, "numnum:count:POP2005": 3, "numnum:max:POP2005": 14282, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 14282, "numnum:count:POP2010": 3, "numnum:max:POP2010": 14787, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14787, "numnum:count:POP2015": 3, "numnum:max:POP2015": 15577, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 15577, "numnum:count:POP2020": 3, "numnum:max:POP2020": 17039, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 17039, "numnum:count:POP2025": 3, "numnum:max:POP2025": 18707, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18707, "numnum:count:POP2050": 3, "numnum:max:POP2050": 20560, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 20560, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 19.766557, "numnum:sum:LATITUDE": 67.68323000000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 203.035235, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 930000, "numnum:min:POP_MAX": 885000, "numnum:sum:POP_MAX": 1815000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 769612, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 964436, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 765359, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 765359, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 2028462, "numnum:sum:GEONAMEID": 8640316, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 769612, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 964436, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 769612, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 964436, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 769612, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 964436, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 769612, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 964436, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 143, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 232, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 143, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 232, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 55, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 89, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 55, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 89, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 149, "numnum:min:MIN_PERKM": 144, "numnum:sum:MIN_PERKM": 293, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 149, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 293, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 93, "numnum:min:MIN_PERMI": 89, "numnum:sum:MIN_PERMI": 182, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 93, "numnum:min:MAX_PERMI": 89, "numnum:sum:MAX_PERMI": 182, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 96.141667, "numnum:sum:MIN_BBXMIN": 202.866667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 96.141667, "numnum:sum:MAX_BBXMIN": 202.866667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 96.275, "numnum:sum:MIN_BBXMAX": 203.316667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 96.275, "numnum:sum:MAX_BBXMAX": 203.316667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 19.633333, "numnum:sum:MIN_BBYMIN": 67.516666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 19.633333, "numnum:sum:MAX_BBYMIN": 67.516666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 19.783333, "numnum:sum:MIN_BBYMAX": 67.8, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 19.783333, "numnum:sum:MAX_BBYMAX": 67.8, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 96.205833, "numnum:sum:MEAN_BBXC": 203.088846, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 19.720606, "numnum:sum:MEAN_BBYC": 67.652843, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 844818, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 844818, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 1407, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 367, "numnum:min:UN_FID": 2, "numnum:sum:UN_FID": 369, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 19.75, "numnum:sum:UN_LAT": 67.67, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 96.1, "numnum:sum:UN_LONG": 203.01, "numnum:count:POP1950": 2, "numnum:max:POP1950": 70, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 70, "numnum:count:POP1955": 2, "numnum:max:POP1955": 112, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 112, "numnum:count:POP1960": 2, "numnum:max:POP1960": 179, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 179, "numnum:count:POP1965": 2, "numnum:max:POP1965": 248, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 248, "numnum:count:POP1970": 2, "numnum:max:POP1970": 298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 298, "numnum:count:POP1975": 2, "numnum:max:POP1975": 356, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 356, "numnum:count:POP1980": 2, "numnum:max:POP1980": 423, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 423, "numnum:count:POP1985": 2, "numnum:max:POP1985": 492, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 492, "numnum:count:POP1990": 2, "numnum:max:POP1990": 572, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 572, "numnum:count:POP1995": 2, "numnum:max:POP1995": 661, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 661, "numnum:count:POP2000": 2, "numnum:max:POP2000": 763, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 763, "numnum:count:POP2005": 2, "numnum:max:POP2005": 856, "numnum:min:POP2005": 57, "numnum:sum:POP2005": 913, "numnum:count:POP2010": 2, "numnum:max:POP2010": 930, "numnum:min:POP2010": 885, "numnum:sum:POP2010": 1815, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1024, "numnum:min:POP2015": 919, "numnum:sum:POP2015": 1943, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1177, "numnum:min:POP2020": 978, "numnum:sum:POP2020": 2155, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1321, "numnum:min:POP2025": 1044, "numnum:sum:POP2025": 2365, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1461, "numnum:min:POP2050": 1112, "numnum:sum:POP2050": 2573, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.901614 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 30.67, "numnum:min:LATITUDE": 23.72306, "numnum:sum:LATITUDE": 54.393060000000009, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 104.070019, "numnum:min:LONGITUDE": 90.408579, "numnum:sum:LONGITUDE": 194.478598, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 4123000, "numnum:sum:POP_MAX": 16920394, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 3950437, "numnum:sum:POP_MIN": 10951377, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 11622929, "numnum:sum:POP_OTHER": 26618467, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1815286, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 3000527, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 9954810, "numnum:sum:MAX_POP10": 24503772, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 11359674, "numnum:sum:MAX_POP20": 32753846, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 24374217, "numnum:sum:MAX_POP50": 78219908, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 78549234, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 3528, "numnum:sum:MIN_AREAKM": 9440, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 24244, "numnum:sum:MAX_AREAKM": 74156, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 1362, "numnum:sum:MIN_AREAMI": 3645, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 9361, "numnum:sum:MAX_AREAMI": 28632, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 1439, "numnum:sum:MIN_PERKM": 3735, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 11900, "numnum:sum:MAX_PERKM": 31214, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 894, "numnum:sum:MIN_PERMI": 2321, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 7394, "numnum:sum:MAX_PERMI": 19395, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 103.125, "numnum:min:MIN_BBXMIN": 88.133791, "numnum:sum:MIN_BBXMIN": 191.258791, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 103.383333, "numnum:min:MAX_BBXMIN": 89.9, "numnum:sum:MAX_BBXMIN": 193.283333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 104.433333, "numnum:min:MIN_BBXMAX": 90.816777, "numnum:sum:MIN_BBXMAX": 195.25011, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 105.375, "numnum:min:MAX_BBXMAX": 92.908333, "numnum:sum:MAX_BBXMAX": 198.283333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 28.738768, "numnum:min:MIN_BBYMIN": 22.858333, "numnum:sum:MIN_BBYMIN": 51.597100999999998, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 30.065456, "numnum:min:MAX_BBYMIN": 23.482936, "numnum:sum:MAX_BBYMIN": 53.548392, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 31.083333, "numnum:min:MIN_BBYMAX": 24.247407, "numnum:sum:MIN_BBYMAX": 55.33074, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 31.341667, "numnum:min:MAX_BBYMAX": 25.583333, "numnum:sum:MAX_BBYMAX": 56.925, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 104.039242, "numnum:min:MEAN_BBXC": 90.400679, "numnum:sum:MEAN_BBXC": 194.439921, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 30.486458, "numnum:min:MEAN_BBYC": 24.105092, "numnum:sum:MEAN_BBYC": 54.59155, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 32, "numnum:sum:ADMIN1_COD": 113, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 3950437, "numnum:sum:GN_POP": 14306937, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 529, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 533, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 31, "numnum:sum:UN_FID": 400, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 30.67, "numnum:min:UN_LAT": 23.7, "numnum:sum:UN_LAT": 54.370000000000008, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 104.07, "numnum:min:UN_LONG": 90.4, "numnum:sum:UN_LONG": 194.47, "numnum:count:POP1950": 2, "numnum:max:POP1950": 768, "numnum:min:POP1950": 336, "numnum:sum:POP1950": 1104, "numnum:count:POP1955": 2, "numnum:max:POP1955": 922, "numnum:min:POP1955": 409, "numnum:sum:POP1955": 1331, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1106, "numnum:min:POP1960": 508, "numnum:sum:POP1960": 1614, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1327, "numnum:min:POP1965": 821, "numnum:sum:POP1965": 2148, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1592, "numnum:min:POP1970": 1374, "numnum:sum:POP1970": 2966, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 1911, "numnum:sum:POP1975": 4132, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 2293, "numnum:sum:POP1980": 5559, "numnum:count:POP1985": 2, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 2639, "numnum:sum:POP1985": 7299, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 2955, "numnum:sum:POP1990": 9576, "numnum:count:POP1995": 2, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 3403, "numnum:sum:POP1995": 11735, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 3919, "numnum:sum:POP2000": 14204, "numnum:count:POP2005": 2, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 4065, "numnum:sum:POP2005": 16641, "numnum:count:POP2010": 2, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 4123, "numnum:sum:POP2010": 17608, "numnum:count:POP2015": 2, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 4266, "numnum:sum:POP2015": 19062, "numnum:count:POP2020": 2, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 4634, "numnum:sum:POP2020": 21649, "numnum:count:POP2025": 2, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 5014, "numnum:sum:POP2025": 24436, "numnum:count:POP2050": 2, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 5320, "numnum:sum:POP2050": 27335, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 90.395508, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.762468 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.749999, "numnum:min:LATITUDE": 11.55003, "numnum:sum:LATITUDE": 25.300029000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 104.916634, "numnum:min:LONGITUDE": 100.516645, "numnum:sum:LONGITUDE": 205.433279, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 1466000, "numnum:sum:POP_MAX": 8170000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 1466000, "numnum:sum:POP_MIN": 6570476, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 1604086, "numnum:sum:POP_OTHER": 6686844, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1821306, "numnum:min:GEONAMEID": 1609350, "numnum:sum:GEONAMEID": 3430656, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 1551977, "numnum:sum:MAX_POP10": 6875577, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 1551977, "numnum:sum:MAX_POP20": 10375511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 1551977, "numnum:sum:MAX_POP50": 10762916, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 1551977, "numnum:sum:MAX_POP300": 10758223, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 464, "numnum:sum:MIN_AREAKM": 1279, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 464, "numnum:sum:MAX_AREAKM": 2814, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 179, "numnum:sum:MIN_AREAMI": 494, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 179, "numnum:sum:MAX_AREAMI": 1087, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 703, "numnum:min:MIN_PERKM": 280, "numnum:sum:MIN_PERKM": 983, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 703, "numnum:sum:MAX_PERKM": 2057, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 437, "numnum:min:MIN_PERMI": 174, "numnum:sum:MIN_PERMI": 611, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 437, "numnum:sum:MAX_PERMI": 1278, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 104.441667, "numnum:min:MIN_BBXMIN": 99.991667, "numnum:sum:MIN_BBXMIN": 204.433334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 104.441667, "numnum:min:MAX_BBXMIN": 100.216667, "numnum:sum:MAX_BBXMIN": 204.658334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 105, "numnum:min:MIN_BBXMAX": 100.844293, "numnum:sum:MIN_BBXMAX": 205.844293, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 105, "numnum:min:MAX_BBXMAX": 101.016667, "numnum:sum:MAX_BBXMAX": 206.01666699999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.5, "numnum:min:MIN_BBYMIN": 11.291667, "numnum:sum:MIN_BBYMIN": 24.791667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.516667, "numnum:min:MAX_BBYMIN": 11.291667, "numnum:sum:MAX_BBYMIN": 24.808334000000003, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.872295, "numnum:min:MIN_BBYMAX": 11.691667, "numnum:sum:MIN_BBYMAX": 25.563962, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 14.158333, "numnum:min:MAX_BBYMAX": 11.691667, "numnum:sum:MAX_BBYMAX": 25.85, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 104.78577, "numnum:min:MEAN_BBXC": 100.545047, "numnum:sum:MEAN_BBXC": 205.330817, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.761017, "numnum:min:MEAN_BBYC": 11.488418, "numnum:sum:MEAN_BBYC": 25.249435, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 40, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 1573544, "numnum:sum:GN_POP": 6678020, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 18, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 5, "numnum:sum:UN_FID": 501, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 13.75, "numnum:min:UN_LAT": 11.56, "numnum:sum:UN_LAT": 25.310000000000004, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 104.91, "numnum:min:UN_LONG": 100.51, "numnum:sum:UN_LONG": 205.42000000000003, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 364, "numnum:sum:POP1950": 1724, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 376, "numnum:sum:POP1955": 2088, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 389, "numnum:sum:POP1960": 2540, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 436, "numnum:sum:POP1965": 3020, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 900, "numnum:sum:POP1970": 4010, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 100, "numnum:sum:POP1975": 3942, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 238, "numnum:sum:POP1980": 4961, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 427, "numnum:sum:POP1985": 5706, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 615, "numnum:sum:POP1990": 6503, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 836, "numnum:sum:POP1995": 6942, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 1160, "numnum:sum:POP2000": 7492, "numnum:count:POP2005": 2, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 1363, "numnum:sum:POP2005": 7945, "numnum:count:POP2010": 2, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 1466, "numnum:sum:POP2010": 8170, "numnum:count:POP2015": 2, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 1651, "numnum:sum:POP2015": 8569, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 2028, "numnum:sum:POP2020": 9360, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 2457, "numnum:sum:POP2025": 10264, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 2911, "numnum:sum:POP2050": 11243, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 100.502930, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 17.966693, "numnum:sum:LATITUDE": 39.00002, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 102.59998, "numnum:sum:LONGITUDE": 208.449994, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4378000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 5132000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1431270, "numnum:min:POP_MIN": 570348, "numnum:sum:POP_MIN": 2001618, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 469811, "numnum:sum:POP_OTHER": 5936158, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1651944, "numnum:min:GEONAMEID": 1581130, "numnum:sum:GEONAMEID": 3233074, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 471927, "numnum:sum:MAX_POP10": 6092733, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7346227, "numnum:min:MAX_POP20": 471927, "numnum:sum:MAX_POP20": 7818154, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 570348, "numnum:sum:MAX_POP50": 16977107, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 570348, "numnum:sum:MAX_POP300": 24270979, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 166, "numnum:sum:MIN_AREAKM": 2678, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 243, "numnum:sum:MAX_AREAKM": 14292, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 64, "numnum:sum:MIN_AREAMI": 1034, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 5518, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 170, "numnum:sum:MIN_PERKM": 1345, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 283, "numnum:sum:MAX_PERKM": 10550, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 106, "numnum:sum:MIN_PERMI": 836, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 176, "numnum:sum:MAX_PERMI": 6556, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 102.491667, "numnum:sum:MIN_BBXMIN": 207.466667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 102.491667, "numnum:sum:MAX_BBXMIN": 208.107954, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 102.725, "numnum:sum:MIN_BBXMAX": 208.9544, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 102.816667, "numnum:sum:MAX_BBXMAX": 209.625, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 19.283333, "numnum:min:MIN_BBYMIN": 17.8, "numnum:sum:MIN_BBYMIN": 37.083332999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 17.875, "numnum:sum:MAX_BBYMIN": 38.495237, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 18.083333, "numnum:sum:MIN_BBYMAX": 39.402542, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 18.083333, "numnum:sum:MAX_BBYMAX": 39.866665999999998, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 102.648054, "numnum:sum:MEAN_BBXC": 208.540935, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 17.967124, "numnum:sum:MEAN_BBYC": 38.84053, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 27, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1431270, "numnum:min:GN_POP": 196731, "numnum:sum:GN_POP": 1628001, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 26, "numnum:sum:GTOPO30": 200, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 451, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 451, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 21.03, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 105.82, "numnum:count:POP1950": 2, "numnum:max:POP1950": 280, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 280, "numnum:count:POP1955": 2, "numnum:max:POP1955": 425, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 425, "numnum:count:POP1960": 2, "numnum:max:POP1960": 644, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 644, "numnum:count:POP1965": 2, "numnum:max:POP1965": 917, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 917, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1307, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1307, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1884, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1884, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2606, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2606, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2854, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2854, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3126, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3126, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3424, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3424, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3752, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3752, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4170, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4170, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4378, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4378, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4723, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4723, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5357, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5357, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6036, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6036, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6754, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6754, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 31.216452, "numnum:min:LATITUDE": 3.166666, "numnum:sum:LATITUDE": 34.383118, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 121.436505, "numnum:min:LONGITUDE": 101.699983, "numnum:sum:LONGITUDE": 223.13648799999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 1448000, "numnum:sum:POP_MAX": 16435000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 1448000, "numnum:sum:POP_MIN": 16056512, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 2667990, "numnum:sum:POP_OTHER": 19471562, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1796236, "numnum:min:GEONAMEID": 1735161, "numnum:sum:GEONAMEID": 3531397, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 2750755, "numnum:sum:MAX_POP10": 18923639, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 2750755, "numnum:sum:MAX_POP20": 18923639, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 3468789, "numnum:sum:MAX_POP50": 30099461, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 4983714, "numnum:sum:MAX_POP300": 31615300, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 40576904, "numnum:min:MAX_POP310": 4983714, "numnum:sum:MAX_POP310": 45560618, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 666, "numnum:sum:MIN_AREAKM": 4458, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 16400, "numnum:min:MAX_AREAKM": 1700, "numnum:sum:MAX_AREAKM": 18100, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 257, "numnum:sum:MIN_AREAMI": 1721, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 6332, "numnum:min:MAX_AREAMI": 657, "numnum:sum:MAX_AREAMI": 6989, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 350, "numnum:sum:MIN_PERKM": 2569, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 12342, "numnum:min:MAX_PERKM": 1111, "numnum:sum:MAX_PERKM": 13453, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 217, "numnum:sum:MIN_PERMI": 1596, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 7669, "numnum:min:MAX_PERMI": 690, "numnum:sum:MAX_PERMI": 8359, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 119.016667, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 220.375, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 121.013757, "numnum:min:MAX_BBXMIN": 101.491667, "numnum:sum:MAX_BBXMIN": 222.505424, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 101.841667, "numnum:sum:MIN_BBXMAX": 223.741667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 223.79166700000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 30.191667, "numnum:min:MIN_BBYMIN": 2.7, "numnum:sum:MIN_BBYMIN": 32.891667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 30.7, "numnum:min:MAX_BBYMIN": 3.040173, "numnum:sum:MAX_BBYMIN": 33.740173, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 31.65, "numnum:min:MIN_BBYMAX": 3.475, "numnum:sum:MIN_BBYMAX": 35.125, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 32.308333, "numnum:min:MAX_BBYMAX": 3.475, "numnum:sum:MAX_BBYMAX": 35.783333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 121.053901, "numnum:min:MEAN_BBXC": 101.644598, "numnum:sum:MEAN_BBXC": 222.698499, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 31.253289, "numnum:min:MEAN_BBYC": 3.131431, "numnum:sum:MEAN_BBYC": 34.38472, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 37, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 1453975, "numnum:sum:GN_POP": 16062487, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 62, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 68, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 348, "numnum:min:UN_FID": 98, "numnum:sum:UN_FID": 446, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 31.24, "numnum:min:UN_LAT": 3.14, "numnum:sum:UN_LAT": 34.379999999999998, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 121.47, "numnum:min:UN_LONG": 101.7, "numnum:sum:UN_LONG": 223.17000000000003, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 208, "numnum:sum:POP1950": 6274, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 281, "numnum:sum:POP1955": 6580, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 344, "numnum:sum:POP1960": 6886, "numnum:count:POP1965": 2, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 394, "numnum:sum:POP1965": 7187, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 451, "numnum:sum:POP1970": 7506, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 645, "numnum:sum:POP1975": 7971, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 921, "numnum:sum:POP1980": 8529, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 1016, "numnum:sum:POP1985": 8917, "numnum:count:POP1990": 2, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 1120, "numnum:sum:POP1990": 9325, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 1213, "numnum:sum:POP1995": 11636, "numnum:count:POP2000": 2, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 1306, "numnum:sum:POP2000": 14549, "numnum:count:POP2005": 2, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 1405, "numnum:sum:POP2005": 15908, "numnum:count:POP2010": 2, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 1448, "numnum:sum:POP2010": 16435, "numnum:count:POP2015": 2, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 1519, "numnum:sum:POP2015": 17308, "numnum:count:POP2020": 2, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 1670, "numnum:sum:POP2020": 18884, "numnum:count:POP2025": 2, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 1820, "numnum:sum:POP2025": 20286, "numnum:count:POP2050": 2, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 1938, "numnum:sum:POP2050": 21350, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 22.304981, "numnum:min:LATITUDE": 2.91402, "numnum:sum:LATITUDE": 25.219001000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 114.185009, "numnum:min:LONGITUDE": 101.701947, "numnum:sum:LONGITUDE": 215.886956, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7206000, "numnum:min:POP_MAX": 67964, "numnum:sum:POP_MAX": 7273964, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4551579, "numnum:min:POP_MIN": 50000, "numnum:sum:POP_MIN": 4601579, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4549026, "numnum:min:POP_OTHER": 956431, "numnum:sum:POP_OTHER": 5505457, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6697380, "numnum:min:GEONAMEID": 1819729, "numnum:sum:GEONAMEID": 8517109, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 4551579, "numnum:min:MAX_POP10": 955607, "numnum:sum:MAX_POP10": 5507186, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 15779579, "numnum:min:MAX_POP20": 964830, "numnum:sum:MAX_POP20": 16744409, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 16718429, "numnum:min:MAX_POP50": 1651113, "numnum:sum:MAX_POP50": 18369542, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 16718429, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 16718429, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 42594594, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 42594594, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 486, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 688, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 10661, "numnum:min:MAX_AREAKM": 805, "numnum:sum:MAX_AREAKM": 11466, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 188, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 266, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 4116, "numnum:min:MAX_AREAMI": 311, "numnum:sum:MAX_AREAMI": 4427, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 467, "numnum:min:MIN_PERKM": 219, "numnum:sum:MIN_PERKM": 686, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 7493, "numnum:min:MAX_PERKM": 737, "numnum:sum:MAX_PERKM": 8230, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 290, "numnum:min:MIN_PERMI": 136, "numnum:sum:MIN_PERMI": 426, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 4656, "numnum:min:MAX_PERMI": 458, "numnum:sum:MAX_PERMI": 5114, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 112.533333, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 213.891666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 113.983333, "numnum:min:MAX_BBXMIN": 101.575, "numnum:sum:MAX_BBXMIN": 215.558333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 114.3, "numnum:min:MIN_BBXMAX": 101.891667, "numnum:sum:MIN_BBXMAX": 216.191667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 114.775, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 216.66666700000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 21.925, "numnum:min:MIN_BBYMIN": 2.7, "numnum:sum:MIN_BBYMIN": 24.625, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 22.2, "numnum:min:MAX_BBYMIN": 2.708333, "numnum:sum:MAX_BBYMIN": 24.908333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 22.4, "numnum:min:MIN_BBYMAX": 3.041194, "numnum:sum:MIN_BBYMAX": 25.441194, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 24.033333, "numnum:min:MAX_BBYMAX": 3.041194, "numnum:sum:MAX_BBYMAX": 27.074527, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 114.035195, "numnum:min:MEAN_BBXC": 101.716617, "numnum:sum:MEAN_BBXC": 215.751812, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 22.679605, "numnum:min:MEAN_BBYC": 2.915909, "numnum:sum:MEAN_BBYC": 25.595513999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7012738, "numnum:min:GN_POP": 50000, "numnum:sum:GN_POP": 7062738, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 30, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9969, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 210, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 210, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 22.27, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 22.27, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 114.17, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 114.17, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1682, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1682, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2121, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2121, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2620, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2620, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3191, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3191, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3458, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3458, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3943, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3943, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4609, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5070, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5070, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5677, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5677, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6206, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6206, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6662, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6662, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7057, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7057, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7206, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7206, "numnum:count:POP2015": 2, "numnum:max:POP2015": 7419, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7419, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7744, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7744, "numnum:count:POP2025": 2, "numnum:max:POP2025": 8040, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8040, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8305, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8305, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 1500, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 66.257758, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 121.568333, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 341.81244, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 1, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 1, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 11106000, "numnum:min:POP_MAX": 5183700, "numnum:sum:POP_MAX": 23189973, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 7480601, "numnum:min:POP_MIN": 2618772, "numnum:sum:POP_MIN": 13388902, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9033231, "numnum:min:POP_OTHER": 3314179, "numnum:sum:POP_OTHER": 18045651, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 40, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 37, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1880252, "numnum:min:GEONAMEID": 1668341, "numnum:sum:GEONAMEID": 5365263, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 10190861, "numnum:min:MAX_POP10": 3289529, "numnum:sum:MAX_POP10": 19401132, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 11120470, "numnum:min:MAX_POP20": 4207001, "numnum:sum:MAX_POP20": 23603167, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 16510327, "numnum:min:MAX_POP50": 4207001, "numnum:sum:MAX_POP50": 29365111, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 23647944, "numnum:min:MAX_POP300": 4207001, "numnum:sum:MAX_POP300": 37067190, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 4207001, "numnum:sum:MAX_POP310": 150540496, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 305, "numnum:sum:MIN_AREAKM": 3353, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 121008, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 118, "numnum:sum:MIN_AREAMI": 1295, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 46722, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1837, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 2298, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 94990, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 1141, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 1428, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 59023, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 120.741667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 335.816667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 121.325, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 341.041666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 121.622484, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 342.83081699999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 121.816667, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 343.141667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 57.6, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 65.808333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 67.09166599999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 67.175, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 121.292375, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 341.043404, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 65.155485, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 25, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7871900, "numnum:min:GN_POP": 3547809, "numnum:sum:GN_POP": 18900310, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 74, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 585, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 1.26, "numnum:sum:UN_LAT": 66.19, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 121.5, "numnum:min:UN_LONG": 103.83, "numnum:sum:UN_LONG": 341.71, "numnum:count:POP1950": 3, "numnum:max:POP1950": 4331, "numnum:min:POP1950": 604, "numnum:sum:POP1950": 5951, "numnum:count:POP1955": 3, "numnum:max:POP1955": 4628, "numnum:min:POP1955": 760, "numnum:sum:POP1955": 6694, "numnum:count:POP1960": 3, "numnum:max:POP1960": 4945, "numnum:min:POP1960": 955, "numnum:sum:POP1960": 7534, "numnum:count:POP1965": 3, "numnum:max:POP1965": 5284, "numnum:min:POP1965": 1230, "numnum:sum:POP1965": 8394, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5646, "numnum:min:POP1970": 1741, "numnum:sum:POP1970": 9462, "numnum:count:POP1975": 3, "numnum:max:POP1975": 6034, "numnum:min:POP1975": 2023, "numnum:sum:POP1975": 10320, "numnum:count:POP1980": 3, "numnum:max:POP1980": 6448, "numnum:min:POP1980": 2217, "numnum:sum:POP1980": 11080, "numnum:count:POP1985": 3, "numnum:max:POP1985": 6890, "numnum:min:POP1985": 2446, "numnum:sum:POP1985": 12045, "numnum:count:POP1990": 3, "numnum:max:POP1990": 7362, "numnum:min:POP1990": 2711, "numnum:sum:POP1990": 13089, "numnum:count:POP1995": 3, "numnum:max:POP1995": 8486, "numnum:min:POP1995": 2676, "numnum:sum:POP1995": 14640, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9782, "numnum:min:POP2000": 2640, "numnum:sum:POP2000": 16439, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10717, "numnum:min:POP2005": 2606, "numnum:sum:POP2005": 17650, "numnum:count:POP2010": 3, "numnum:max:POP2010": 11106, "numnum:min:POP2010": 2603, "numnum:sum:POP2010": 18145, "numnum:count:POP2015": 3, "numnum:max:POP2015": 11741, "numnum:min:POP2015": 2651, "numnum:sum:POP2015": 18984, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12842, "numnum:min:POP2020": 2862, "numnum:sum:POP2020": 20513, "numnum:count:POP2025": 3, "numnum:max:POP2025": 13807, "numnum:min:POP2025": 3104, "numnum:sum:POP2025": 21876, "numnum:count:POP2050": 3, "numnum:max:POP2050": 14545, "numnum:min:POP2050": 3305, "numnum:sum:POP2050": 22954, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 230, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 7.487396, "numnum:sum:LATITUDE": 46.506834999999998, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 134.626548, "numnum:min:LONGITUDE": 125.754691, "numnum:sum:LONGITUDE": 260.381239, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3300000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 3307026, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2498797, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 2505823, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2483216, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2483216, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 17, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 3431663, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2498797, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 2498797, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2498797, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 2498797, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2498797, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2498797, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2498797, "numnum:min:MAX_POP300": 7026, "numnum:sum:MAX_POP300": 2505823, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 446, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 452, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 447, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 453, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 172, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 174, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 173, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 175, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 510, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 525, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 511, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 526, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 317, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 326, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 318, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 327, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 134.466667, "numnum:min:MIN_BBXMIN": 125.608333, "numnum:sum:MIN_BBXMIN": 260.075, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 134.466667, "numnum:min:MAX_BBXMIN": 125.608333, "numnum:sum:MAX_BBXMIN": 260.075, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 134.5, "numnum:min:MIN_BBXMAX": 125.891667, "numnum:sum:MIN_BBXMAX": 260.391667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 134.5, "numnum:min:MAX_BBXMAX": 125.891667, "numnum:sum:MAX_BBXMAX": 260.391667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 7.325, "numnum:sum:MIN_BBYMIN": 46.150000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 7.325, "numnum:sum:MAX_BBYMIN": 46.150000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 7.35, "numnum:sum:MIN_BBYMAX": 46.541667000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 7.35, "numnum:sum:MAX_BBYMAX": 46.541667000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 134.481548, "numnum:min:MEAN_BBXC": 125.742428, "numnum:sum:MEAN_BBXC": 260.223976, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 7.339881, "numnum:sum:MEAN_BBYC": 46.336878, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3222000, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 3222217, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 13, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 14, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 327, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 327, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 39.02, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 125.75, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 125.75, "numnum:count:POP1950": 2, "numnum:max:POP1950": 516, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 516, "numnum:count:POP1955": 2, "numnum:max:POP1955": 577, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 577, "numnum:count:POP1960": 2, "numnum:max:POP1960": 646, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 646, "numnum:count:POP1965": 2, "numnum:max:POP1965": 769, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 769, "numnum:count:POP1970": 2, "numnum:max:POP1970": 987, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 987, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1348, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1348, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1842, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1842, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2195, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2195, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2526, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2526, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2838, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2838, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3117, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3117, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3265, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3265, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3300, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3300, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3346, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3346, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3434, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3537, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3537, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3630, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3630, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 460, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 37.566349, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 77.479672, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 135.749998, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 377.683013, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 296500, "numnum:sum:POP_MAX": 11897500, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 140000, "numnum:sum:POP_MIN": 11395640, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 222513, "numnum:sum:POP_OTHER": 14067938, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1857910, "numnum:min:GEONAMEID": 1820906, "numnum:sum:GEONAMEID": 5514664, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 219674, "numnum:sum:MAX_POP10": 14488581, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 219674, "numnum:sum:MAX_POP20": 15884109, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 219674, "numnum:sum:MAX_POP50": 24128163, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 22211633, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21991959, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 450, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 145, "numnum:sum:MIN_AREAKM": 1456, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 145, "numnum:sum:MAX_AREAKM": 3349, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 56, "numnum:sum:MIN_AREAMI": 562, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 56, "numnum:sum:MAX_AREAMI": 1293, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 130, "numnum:sum:MIN_PERKM": 831, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 155, "numnum:sum:MAX_PERKM": 2274, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 81, "numnum:sum:MIN_PERMI": 517, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 96, "numnum:sum:MAX_PERMI": 1412, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 135.611529, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 376.986529, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 135.611529, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 377.203714, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 135.808333, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 378.066667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 135.858333, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 378.17499999999998, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 36.75, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 76.211727, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 37.412022, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 77.012022, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 37.791667, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 77.9, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 37.875, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 77.983333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 135.743212, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 377.623331, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 37.485925, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 77.30934099999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 64409, "numnum:sum:GN_POP": 11873361, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 86, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 133, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 649, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 37.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 72.53999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 135.75, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 262.68, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2023, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2644, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3526, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4681, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 6610, "numnum:count:POP1975": 3, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8430, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9959, "numnum:count:POP1985": 3, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11261, "numnum:count:POP1990": 3, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 12304, "numnum:count:POP1995": 3, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12060, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 11723, "numnum:count:POP2005": 3, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11630, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11601, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11566, "numnum:count:POP2020": 3, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11544, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11542, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11542, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 34.750035, "numnum:min:LATITUDE": 14.604159, "numnum:sum:LATITUDE": 65.784185, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 135.460145, "numnum:min:LONGITUDE": 120.569943, "numnum:sum:LONGITUDE": 377.012305, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 44, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 11294000, "numnum:min:POP_MAX": 447824, "numnum:sum:POP_MAX": 22841824, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3077575, "numnum:min:POP_MIN": 272714, "numnum:sum:POP_MIN": 5942702, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9630783, "numnum:min:POP_OTHER": 164877, "numnum:sum:POP_OTHER": 12176940, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1853909, "numnum:min:GEONAMEID": 1701668, "numnum:sum:GEONAMEID": 5284507, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 10169723, "numnum:min:MAX_POP10": 447824, "numnum:sum:MAX_POP10": 13695122, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 10259448, "numnum:min:MAX_POP20": 447824, "numnum:sum:MAX_POP20": 13784847, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 13292739, "numnum:min:MAX_POP50": 447824, "numnum:sum:MAX_POP50": 16818138, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 23366503, "numnum:min:MAX_POP300": 447824, "numnum:sum:MAX_POP300": 39459967, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 26749011, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 42394651, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1561, "numnum:min:MIN_AREAKM": 67, "numnum:sum:MIN_AREAKM": 1717, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 11770, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 603, "numnum:min:MIN_AREAMI": 26, "numnum:sum:MIN_AREAMI": 663, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 4544, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 46, "numnum:sum:MIN_PERKM": 670, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 6578, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 29, "numnum:sum:MIN_PERMI": 416, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 4087, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 134.508333, "numnum:min:MIN_BBXMIN": 120.141667, "numnum:sum:MIN_BBXMIN": 375.191667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 135.304598, "numnum:min:MAX_BBXMIN": 120.541667, "numnum:sum:MAX_BBXMIN": 376.77126499999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 135.883333, "numnum:min:MIN_BBXMAX": 120.65, "numnum:sum:MIN_BBXMAX": 377.572318, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 135.883333, "numnum:min:MAX_BBXMAX": 120.65, "numnum:sum:MAX_BBXMAX": 377.866666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 34.325, "numnum:min:MIN_BBYMIN": 14.016667, "numnum:sum:MIN_BBYMIN": 64.7, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 34.408333, "numnum:min:MAX_BBYMIN": 14.571814, "numnum:sum:MAX_BBYMIN": 65.33848, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 34.916667, "numnum:min:MIN_BBYMAX": 14.702876, "numnum:sum:MIN_BBYMAX": 66.102876, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 35.1, "numnum:min:MAX_BBYMAX": 16.416667, "numnum:sum:MAX_BBYMAX": 68, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 135.475415, "numnum:min:MEAN_BBXC": 120.598765, "numnum:sum:MEAN_BBXC": 376.989224, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 34.676719, "numnum:min:MEAN_BBYC": 14.823118, "numnum:sum:MEAN_BBYC": 65.920902, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 32, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 272714, "numnum:sum:GN_POP": 13309654, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 1456, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 729, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 34.63, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 49.24, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 135.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 256.46999999999999, "numnum:count:POP1950": 3, "numnum:max:POP1950": 4147, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 5691, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5120, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6992, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6227, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8501, "numnum:count:POP1965": 3, "numnum:max:POP1965": 7654, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 10483, "numnum:count:POP1970": 3, "numnum:max:POP1970": 9408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 12942, "numnum:count:POP1975": 3, "numnum:max:POP1975": 9844, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 14843, "numnum:count:POP1980": 3, "numnum:max:POP1980": 9990, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 15945, "numnum:count:POP1985": 3, "numnum:max:POP1985": 10350, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 17238, "numnum:count:POP1990": 3, "numnum:max:POP1990": 11035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 19008, "numnum:count:POP1995": 3, "numnum:max:POP1995": 11052, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 20453, "numnum:count:POP2000": 3, "numnum:max:POP2000": 11165, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 21123, "numnum:count:POP2005": 3, "numnum:max:POP2005": 11258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 22019, "numnum:count:POP2010": 3, "numnum:max:POP2010": 11294, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 22394, "numnum:count:POP2015": 3, "numnum:max:POP2015": 11662, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 22999, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12786, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 24151, "numnum:count:POP2025": 3, "numnum:max:POP2025": 13892, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25260, "numnum:count:POP2050": 3, "numnum:max:POP2050": 14808, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 26176, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 6, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 30, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 60, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": 1.338188, "numnum:sum:LATITUDE": 8.441192000000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 171.38, "numnum:sum:LONGITUDE": 344.39757099999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 28802, "numnum:min:POP_MAX": 25400, "numnum:sum:POP_MAX": 54202, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22534, "numnum:min:POP_MIN": 20500, "numnum:sum:POP_MIN": 43034, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2113779, "numnum:min:GEONAMEID": 2110079, "numnum:sum:GEONAMEID": 4223858, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 22534, "numnum:min:MAX_POP10": 2084, "numnum:sum:MAX_POP10": 24618, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 22534, "numnum:min:MAX_POP20": 2084, "numnum:sum:MAX_POP20": 24618, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 22534, "numnum:min:MAX_POP50": 2084, "numnum:sum:MAX_POP50": 24618, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 22534, "numnum:min:MAX_POP300": 2084, "numnum:sum:MAX_POP300": 24618, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 12, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 15, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 12, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 15, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 5, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 6, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 5, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 6, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 28, "numnum:min:MIN_PERKM": 7, "numnum:sum:MIN_PERKM": 35, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 28, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 35, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 17, "numnum:min:MIN_PERMI": 5, "numnum:sum:MIN_PERMI": 22, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 17, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 22, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 171.366667, "numnum:sum:MIN_BBXMIN": 344.33333400000006, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 171.366667, "numnum:sum:MAX_BBXMIN": 344.33333400000006, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 171.375, "numnum:sum:MIN_BBXMAX": 344.433333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 171.375, "numnum:sum:MAX_BBXMAX": 344.433333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": 1.325, "numnum:sum:MIN_BBYMIN": 8.416667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": 1.325, "numnum:sum:MAX_BBYMIN": 8.416667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": 1.358333, "numnum:sum:MIN_BBYMAX": 8.475, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": 1.358333, "numnum:sum:MAX_BBYMAX": 8.475, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 171.370833, "numnum:sum:MEAN_BBXC": 344.386309, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": 1.33869, "numnum:sum:MEAN_BBYC": 8.442857, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 28802, "numnum:min:GN_POP": 20500, "numnum:sum:GN_POP": 49302, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 2, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -99.118652, 19.435514 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.060809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.137207, -16.509833 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.608887, -33.045508 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Región Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.867905 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -43.220215, -22.938160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.691708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.925566 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamá|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamá (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -79.519043, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.458768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotá", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotá", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -74.069824, 4.587376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.287709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.132979 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.501465, 10.639014 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavík", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suðurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salé - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -3.669434, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.175159 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.132970 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.631179 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.179724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.910976 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.344395 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 4.284668, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "København", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "København", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ 14.479980, 50.078295 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.885921 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavský", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ 19.094238, 47.502359 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.455888 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrës", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.666281 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 27.575684, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 46.995241 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 44.802246, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaïr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaïr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomé", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomé", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.118708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.468151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ 3.405762, 6.446318 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.155846 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ 34.782715, 32.082575 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ 44.406738, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 35.222168, 31.765537 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 74.597168, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ 51.437988, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ 46.779785, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 54.382324, 24.467151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.944198 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.506557 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 79.870605, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.559294 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 151.193848, -33.925130 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 168.332520, -17.748687 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.230957, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.145852 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.310824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 104.084473, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.957832 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.022983 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 114.938965, 4.872048 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.471411 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo León", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de México", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de México", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.274973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.208740 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -77.047119, -12.050065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaíso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaíso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaíso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Región Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasília", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasília", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.781682 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunción", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunción", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunción", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|São Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "São Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "São Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.553917 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.899583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.755580 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -77.354736, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazán", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -86.275635, 12.157486 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San José", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San José", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San José", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.936388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamá|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamá (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotá", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotá", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -74.080811, 4.598327 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint George‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.806444 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.928042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.912938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laâyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.605470 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salé - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -3.680420, 40.405131 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.656982, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Côte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavík", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suðurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.370856 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.165299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.315141 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.700938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaïr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaïr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomé", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomé", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouémé", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 8.778076, 3.754634 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djaména", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djaména", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundé", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundé", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athínai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athínai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.187267 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 35.211182, 31.774878 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.143311, 11.598432 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "Île-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.871941 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genève", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.137425 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "København", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "København", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 12.557373, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 14.468994, 50.085344 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 20.994873, 52.254709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.057985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.937462 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.894100 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavský", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrës", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.434326, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 27.564697, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 26.092529, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.104191 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.730330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.234758 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.556757 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.603814 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 88.319092, 22.492257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.937333 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.904614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "Ürümqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "Ürümqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.810747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hà Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thái Nguyên", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hà Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pénh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pénh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.555380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.173425 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.910125 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.222197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 121.563721, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 114.927979, 4.882994 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.459899 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.814124 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 168.321533, -17.738223 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.375732, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } +] } +] } +] } diff --git a/tests/ne_110m_populated_places_nulls/in.json b/tests/ne_110m_populated_places_nulls/in.json new file mode 100644 index 000000000..a98b2e062 --- /dev/null +++ b/tests/ne_110m_populated_places_nulls/in.json @@ -0,0 +1,243 @@ +{"type": "Feature", "properties": {"SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "NOTE": null, "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831.0, "MEGANAME": null, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762.0, "MAX_POP20": 636762.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 177.0, "MAX_AREAKM": 177.0, "MIN_AREAMI": 68.0, "MAX_AREAMI": 68.0, "MIN_PERKM": 160.0, "MAX_PERKM": 160.0, "MIN_PERMI": 99.0, "MAX_PERMI": 99.0, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 826.0, "ELEVATION": null, "GTOPO30": 17.0, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3821250590959411}, "geometry": {"type": "Point", "coordinates": [12.453386, 41.903282]}} +{"type": "Feature", "properties": {"SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ADM1NAME": null, "ISO_A2": "SM", "NOTE": null, "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070.0, "MEGANAME": null, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088.0, "MAX_POP20": 29579.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 30.0, "MAX_AREAKM": 30.0, "MIN_AREAMI": 11.0, "MAX_AREAMI": 11.0, "MIN_PERKM": 63.0, "MAX_PERKM": 63.0, "MIN_PERMI": 39.0, "MAX_PERMI": 39.0, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44.0, "MAX_BBYMAX": 44.0, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 29000.0, "ELEVATION": null, "GTOPO30": 377.0, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [12.44177, 43.936095]}} +{"type": "Feature", "properties": {"SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ADM1NAME": null, "ISO_A2": "LI", "NOTE": null, "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030.0, "MEGANAME": null, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442.0, "MAX_POP20": 45442.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 45.0, "MAX_AREAKM": 45.0, "MIN_AREAMI": 17.0, "MAX_AREAMI": 17.0, "MIN_PERKM": 90.0, "MAX_PERKM": 90.0, "MIN_PERMI": 56.0, "MAX_PERMI": 56.0, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 5197.0, "ELEVATION": null, "GTOPO30": 711.0, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9259765121606202}, "geometry": {"type": "Point", "coordinates": [9.516669, 47.133723]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative and", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "NOTE": null, "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048.0, "MEGANAME": null, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782.0, "MAX_POP20": 9782.0, "MAX_POP50": 9782.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 18.0, "MAX_AREAKM": 18.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 32.0, "MAX_PERKM": 32.0, "MIN_PERMI": 20.0, "MAX_PERMI": 20.0, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 4557.0, "ELEVATION": null, "GTOPO30": 651.0, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [31.199997, -26.466667]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "NOTE": null, "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316.0, "MEGANAME": null, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260.0, "MAX_POP20": 107260.0, "MAX_POP50": 107260.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 60.0, "MAX_AREAKM": 60.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 71.0, "MAX_PERKM": 71.0, "MIN_PERMI": 44.0, "MAX_PERMI": 44.0, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 76684.0, "ELEVATION": null, "GTOPO30": 259.0, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [6.130002, 49.61166]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ADM1NAME": null, "ISO_A2": "FM", "NOTE": null, "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986.0, "MEGANAME": null, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412.0, "MAX_POP20": 412.0, "MAX_POP50": 412.0, "MAX_POP300": 412.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1.0, "MAX_AREAKM": 1.0, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": 4.0, "MAX_PERKM": 4.0, "MIN_PERMI": 2.0, "MAX_PERMI": 2.0, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 4645.0, "ELEVATION": null, "GTOPO30": 159.0, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [158.149974, 6.916643]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ADM1NAME": null, "ISO_A2": "MH", "NOTE": null, "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779.0, "MEGANAME": null, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084.0, "MAX_POP20": 2084.0, "MAX_POP50": 2084.0, "MAX_POP300": 2084.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3.0, "MAX_AREAKM": 3.0, "MIN_AREAMI": 1.0, "MAX_AREAMI": 1.0, "MIN_PERKM": 7.0, "MAX_PERKM": 7.0, "MIN_PERMI": 5.0, "MAX_PERMI": 5.0, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 20500.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.08258941986642843}, "geometry": {"type": "Point", "coordinates": [171.38, 7.103004]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ADM1NAME": null, "ISO_A2": "TV", "NOTE": null, "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394.0, "MEGANAME": null, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": null, "MIN_AREAKM": null, "MAX_AREAKM": null, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": null, "MAX_PERKM": null, "MIN_PERMI": null, "MAX_PERMI": null, "MIN_BBXMIN": null, "MAX_BBXMIN": null, "MIN_BBXMAX": null, "MAX_BBXMAX": null, "MIN_BBYMIN": null, "MAX_BBYMIN": null, "MIN_BBYMAX": null, "MAX_BBYMAX": null, "MEAN_BBXC": null, "MEAN_BBYC": null, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 4749.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8592190305879225}, "geometry": {"type": "Point", "coordinates": [179.216647, -8.516651]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ADM1NAME": null, "ISO_A2": "PW", "NOTE": null, "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804.0, "MEGANAME": null, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": 7026.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 6.0, "MAX_AREAKM": 6.0, "MIN_AREAMI": 2.0, "MAX_AREAMI": 2.0, "MIN_PERKM": 15.0, "MAX_PERKM": 15.0, "MIN_PERMI": 9.0, "MAX_PERMI": 9.0, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 217.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [134.626548, 7.487396]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Claimed as inte", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ADM1NAME": null, "ISO_A2": "EH", "NOTE": null, "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1.0, "MEGANAME": null, "LS_NAME": null, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": null, "MIN_AREAKM": null, "MAX_AREAKM": null, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": null, "MAX_PERKM": null, "MIN_PERMI": null, "MAX_PERMI": null, "MIN_BBXMIN": null, "MAX_BBXMIN": null, "MIN_BBXMAX": null, "MAX_BBXMAX": null, "MIN_BBYMIN": null, "MAX_BBYMIN": null, "MIN_BBYMAX": null, "MAX_BBYMAX": null, "MEAN_BBXC": null, "MEAN_BBYC": null, "COMPARE": 1, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.15806529688561577}, "geometry": {"type": "Point", "coordinates": [-9.652522, 26.119166]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ADM1NAME": null, "ISO_A2": "MC", "NOTE": null, "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458.0, "MEGANAME": null, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543.0, "MAX_POP20": 108543.0, "MAX_POP50": 108543.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 36.0, "MAX_AREAKM": 36.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 57.0, "MAX_PERKM": 57.0, "MIN_PERMI": 35.0, "MAX_PERMI": 35.0, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1020.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5821154343333123}, "geometry": {"type": "Point", "coordinates": [7.406913, 43.739645]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ADM1NAME": null, "ISO_A2": "KI", "NOTE": null, "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079.0, "MEGANAME": null, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534.0, "MAX_POP20": 22534.0, "MAX_POP50": 22534.0, "MAX_POP300": 22534.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 12.0, "MAX_AREAKM": 12.0, "MIN_AREAMI": 5.0, "MAX_AREAMI": 5.0, "MIN_PERKM": 28.0, "MAX_PERKM": 28.0, "MIN_PERMI": 17.0, "MAX_PERMI": 17.0, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 28802.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.10965614720271688}, "geometry": {"type": "Point", "coordinates": [173.01757, 1.338187]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ADM1NAME": null, "ISO_A2": "KM", "NOTE": null, "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772.0, "MEGANAME": null, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698.0, "MAX_POP20": 128698.0, "MAX_POP50": 128698.0, "MAX_POP300": 128698.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 60.0, "MAX_AREAKM": 60.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 42872.0, "ELEVATION": null, "GTOPO30": 35.0, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3811511676834858}, "geometry": {"type": "Point", "coordinates": [43.240244, -11.704157]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ADM1NAME": null, "ISO_A2": "AD", "NOTE": null, "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067.0, "MEGANAME": null, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998.0, "MAX_POP20": 53998.0, "MAX_POP50": 53998.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 23.0, "MAX_AREAKM": 23.0, "MIN_AREAMI": 9.0, "MAX_AREAMI": 9.0, "MIN_PERKM": 49.0, "MAX_PERKM": 49.0, "MIN_PERMI": 31.0, "MAX_PERMI": 31.0, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52.0, "GN_POP": 7890.0, "ELEVATION": null, "GTOPO30": 687.0, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.46232183476123834}, "geometry": {"type": "Point", "coordinates": [1.516485, 42.500001]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "NOTE": null, "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890.0, "MEGANAME": null, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934.0, "MAX_POP20": 294934.0, "MAX_POP50": 294934.0, "MAX_POP300": 294934.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 112.0, "MAX_AREAKM": 112.0, "MIN_AREAMI": 43.0, "MAX_AREAMI": 43.0, "MIN_PERKM": 109.0, "MAX_PERKM": 109.0, "MIN_PERMI": 67.0, "MAX_PERMI": 67.0, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 49657.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.4343173903940538}, "geometry": {"type": "Point", "coordinates": [-61.51703, 10.651997]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "NOTE": null, "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061.0, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787.0, "MAX_POP20": 2263899.0, "MAX_POP50": 5065653.0, "MAX_POP300": 7102391.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 601.0, "MAX_AREAKM": 8753.0, "MIN_AREAMI": 232.0, "MAX_AREAMI": 3380.0, "MIN_PERKM": 735.0, "MAX_PERKM": 9184.0, "MIN_PERMI": 457.0, "MAX_PERMI": 5707.0, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 745261.0, "ELEVATION": null, "GTOPO30": 1568.0, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18.0, "POP1955": 25.0, "POP1960": 34.0, "POP1965": 45.0, "POP1970": 59.0, "POP1975": 90.0, "POP1980": 128.0, "POP1985": 168.0, "POP1990": 219.0, "POP1995": 289.0, "POP2000": 497.0, "POP2005": 775.0, "POP2010": 860.0, "POP2015": 947.0, "POP2020": 1152.0, "POP2025": 1413.0, "POP2050": 1715.0, "CITYALT": null, "clustered:unrelated": 0.30404902033045367}, "geometry": {"type": "Point", "coordinates": [30.058585, -1.951644]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "NOTE": null, "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985.0, "MEGANAME": null, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138.0, "MAX_POP20": 90138.0, "MAX_POP50": 90138.0, "MAX_POP300": 90138.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 28.0, "MAX_AREAKM": 28.0, "MIN_AREAMI": 11.0, "MAX_AREAMI": 11.0, "MIN_PERKM": 37.0, "MAX_PERKM": 37.0, "MIN_PERMI": 23.0, "MAX_PERMI": 23.0, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 76218.0, "ELEVATION": null, "GTOPO30": 1156.0, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.14114859599150942}, "geometry": {"type": "Point", "coordinates": [31.133334, -26.31665]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "NOTE": null, "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303.0, "MEGANAME": null, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975.0, "MAX_POP20": 111975.0, "MAX_POP50": 111975.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 21.0, "MAX_AREAKM": 21.0, "MIN_AREAMI": 8.0, "MAX_AREAMI": 8.0, "MIN_PERKM": 30.0, "MAX_PERKM": 30.0, "MIN_PERMI": 18.0, "MAX_PERMI": 18.0, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44.0, "GN_POP": null, "ELEVATION": null, "GTOPO30": 551.0, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [31.580025, 4.829975]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official, legis", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "NOTE": null, "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373.0, "MEGANAME": null, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489.0, "MAX_POP20": 708489.0, "MAX_POP50": 2312867.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 195.0, "MAX_AREAKM": 710.0, "MIN_AREAMI": 75.0, "MAX_AREAMI": 274.0, "MIN_PERKM": 217.0, "MAX_PERKM": 764.0, "MIN_PERMI": 135.0, "MAX_PERMI": 475.0, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11.0, "GN_POP": 474292.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.45457533553780116}, "geometry": {"type": "Point", "coordinates": [4.269961, 52.080036]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "NOTE": null, "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359.0, "MEGANAME": null, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807.0, "MAX_POP20": 314807.0, "MAX_POP50": 314807.0, "MAX_POP300": 314807.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 145.0, "MAX_AREAKM": 145.0, "MIN_AREAMI": 56.0, "MAX_AREAMI": 56.0, "MIN_PERKM": 208.0, "MAX_PERKM": 208.0, "MIN_PERMI": 129.0, "MAX_PERMI": 129.0, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46.0, "MAX_BBYMIN": 46.0, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61.0, "GN_POP": 255115.0, "ELEVATION": null, "GTOPO30": 284.0, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [14.514969, 46.055288]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavsk\u00fd", "ISO_A2": "SK", "NOTE": null, "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972.0, "MEGANAME": null, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687.0, "MAX_POP20": 373687.0, "MAX_POP50": 373687.0, "MAX_POP300": 373687.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 113.0, "MAX_AREAKM": 113.0, "MIN_AREAMI": 43.0, "MAX_AREAMI": 43.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 423737.0, "ELEVATION": null, "GTOPO30": 132.0, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [17.11698, 48.150018]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "NOTE": null, "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030.0, "MEGANAME": null, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310.0, "MAX_POP20": 731310.0, "MAX_POP50": 731310.0, "MAX_POP300": 731310.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 270.0, "MAX_AREAKM": 270.0, "MIN_AREAMI": 104.0, "MAX_AREAMI": 104.0, "MIN_PERKM": 205.0, "MAX_PERKM": 205.0, "MIN_PERMI": 127.0, "MAX_PERMI": 127.0, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 344939.0, "ELEVATION": null, "GTOPO30": 21.0, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.21110334739147696}, "geometry": {"type": "Point", "coordinates": [51.532967, 25.286556]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "NOTE": null, "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044.0, "MEGANAME": null, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850.0, "MAX_POP20": 145850.0, "MAX_POP50": 145850.0, "MAX_POP300": 145850.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 41.0, "MAX_AREAKM": 41.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 136473.0, "ELEVATION": null, "GTOPO30": 58.0, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.17320081367150342}, "geometry": {"type": "Point", "coordinates": [19.266306, 42.465972]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "NOTE": null, "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992.0, "MEGANAME": null, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383.0, "MAX_POP20": 3439184.0, "MAX_POP50": 4689795.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 1265.0, "MAX_AREAKM": 2843.0, "MIN_AREAMI": 488.0, "MAX_AREAMI": 1098.0, "MIN_PERKM": 1148.0, "MAX_PERKM": 2388.0, "MIN_PERMI": 713.0, "MAX_PERMI": 1484.0, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36.0, "GN_POP": 115826.0, "ELEVATION": null, "GTOPO30": 35.0, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.6363525996535283}, "geometry": {"type": "Point", "coordinates": [79.949993, 6.900003]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "NOTE": null, "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930.0, "MEGANAME": null, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824.0, "MAX_POP20": 447824.0, "MAX_POP50": 447824.0, "MAX_POP300": 447824.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 34.0, "MAX_AREAMI": 34.0, "MIN_PERKM": 78.0, "MAX_PERKM": 78.0, "MIN_PERMI": 48.0, "MAX_PERMI": 48.0, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 272714.0, "ELEVATION": null, "GTOPO30": 1448.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5511636601842002}, "geometry": {"type": "Point", "coordinates": [120.569942, 16.42999]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Offical capital", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "NOTE": null, "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196.0, "MEGANAME": null, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269.0, "MAX_POP20": 218269.0, "MAX_POP50": 218269.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 55.0, "MAX_AREAKM": 55.0, "MIN_AREAMI": 21.0, "MAX_AREAMI": 21.0, "MIN_PERKM": 61.0, "MAX_PERKM": 61.0, "MIN_PERMI": 38.0, "MAX_PERMI": 38.0, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 180541.0, "ELEVATION": null, "GTOPO30": 1129.0, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.750003, -6.183306]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "NOTE": null, "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552.0, "MEGANAME": null, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329.0, "MAX_POP20": 275329.0, "MAX_POP50": 275329.0, "MAX_POP300": 275329.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 78.0, "MAX_AREAKM": 78.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 85.0, "MAX_PERKM": 85.0, "MIN_PERMI": 53.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 121631.0, "ELEVATION": null, "GTOPO30": 527.0, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [7.466975, 46.916682]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Claimed as capi", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "La\u00e2youne - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881.0, "MEGANAME": null, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365.0, "MAX_POP20": 176365.0, "MAX_POP50": 176365.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 21.0, "MAX_AREAKM": 21.0, "MIN_AREAMI": 8.0, "MAX_AREAMI": 8.0, "MIN_PERKM": 26.0, "MAX_PERKM": 26.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 188084.0, "ELEVATION": null, "GTOPO30": 72.0, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5583897479368138}, "geometry": {"type": "Point", "coordinates": [-13.200005, 27.149982]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "NOTE": null, "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714.0, "MEGANAME": null, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361.0, "MAX_POP20": 265361.0, "MAX_POP50": 265361.0, "MAX_POP300": 265361.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 41.0, "MAX_AREAKM": 41.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 69.0, "MAX_PERKM": 69.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1.0, "GN_POP": 550000.0, "ELEVATION": null, "GTOPO30": 668.0, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8758713459685084}, "geometry": {"type": "Point", "coordinates": [21.165984, 42.666709]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "NOTE": null, "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635.0, "MEGANAME": null, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336.0, "MAX_POP20": 23336.0, "MAX_POP50": 23336.0, "MAX_POP300": 23336.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 12.0, "MAX_AREAKM": 12.0, "MIN_AREAMI": 5.0, "MAX_AREAMI": 5.0, "MIN_PERKM": 25.0, "MAX_PERKM": 25.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 16571.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8904016691576551}, "geometry": {"type": "Point", "coordinates": [-61.387012, 15.301015]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "NOTE": null, "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817.0, "MEGANAME": null, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001.0, "MAX_POP20": 335001.0, "MAX_POP50": 335001.0, "MAX_POP300": 335001.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 42.0, "MAX_AREAKM": 42.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 623891.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [43.148001, 11.595014]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "NOTE": null, "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380.0, "MEGANAME": null, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607.0, "MAX_POP20": 964830.0, "MAX_POP50": 1651113.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 486.0, "MAX_AREAKM": 805.0, "MIN_AREAMI": 188.0, "MAX_AREAMI": 311.0, "MIN_PERKM": 467.0, "MAX_PERKM": 737.0, "MIN_PERMI": 290.0, "MAX_PERMI": 458.0, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17.0, "GN_POP": 50000.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [101.701946, 2.914019]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910.0, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052.0, "MAX_POP20": 2520813.0, "MAX_POP50": 2520813.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 340.0, "MAX_AREAKM": 486.0, "MIN_AREAMI": 131.0, "MAX_AREAMI": 188.0, "MIN_PERKM": 130.0, "MAX_PERKM": 218.0, "MIN_PERMI": 81.0, "MAX_PERMI": 135.0, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22.0, "GN_POP": 1459640.0, "ELEVATION": null, "GTOPO30": 86.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35.0, "UN_LONG": 135.75, "POP1950": 1002.0, "POP1955": 1091.0, "POP1960": 1165.0, "POP1965": 1229.0, "POP1970": 1298.0, "POP1975": 1622.0, "POP1980": 1701.0, "POP1985": 1714.0, "POP1990": 1760.0, "POP1995": 1804.0, "POP2000": 1806.0, "POP2005": 1805.0, "POP2010": 1805.0, "POP2015": 1804.0, "POP2020": 1804.0, "POP2025": 1804.0, "POP2050": 1804.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [135.748052, 35.031938]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "NOTE": null, "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876.0, "MEGANAME": null, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094.0, "MAX_POP20": 43094.0, "MAX_POP50": 43094.0, "MAX_POP300": 43094.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 13.0, "MAX_PERKM": 13.0, "MIN_PERMI": 8.0, "MAX_PERMI": 8.0, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 34589.0, "ELEVATION": null, "GTOPO30": 5.0, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8483929511358556}, "geometry": {"type": "Point", "coordinates": [-16.591701, 13.453876]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "NOTE": null, "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842.0, "MEGANAME": null, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087.0, "MAX_POP20": 494087.0, "MAX_POP50": 494087.0, "MAX_POP300": 494087.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 114.0, "MAX_AREAKM": 114.0, "MIN_AREAMI": 44.0, "MAX_AREAMI": 44.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 474889.0, "ELEVATION": null, "GTOPO30": 246.0, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [21.433461, 42.000006]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "NOTE": null, "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807.0, "MEGANAME": null, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152.0, "MAX_POP20": 191152.0, "MAX_POP50": 191152.0, "MAX_POP300": 191152.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 106.0, "MAX_AREAKM": 106.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 41.0, "MIN_PERKM": 131.0, "MAX_PERKM": 131.0, "MIN_PERMI": 82.0, "MAX_PERMI": 82.0, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 2971.0, "ELEVATION": null, "GTOPO30": 152.0, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-59.616526, 13.102002]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ou\u00e9m\u00e9", "ISO_A2": "BJ", "NOTE": null, "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087.0, "MEGANAME": null, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453.0, "MAX_POP20": 457770.0, "MAX_POP50": 457770.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 278.0, "MAX_AREAKM": 319.0, "MIN_AREAMI": 107.0, "MAX_AREAMI": 123.0, "MIN_PERKM": 251.0, "MAX_PERKM": 312.0, "MIN_PERMI": 156.0, "MAX_PERMI": 194.0, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 234168.0, "ELEVATION": null, "GTOPO30": 39.0, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.616625, 6.48331]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "NOTE": null, "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378.0, "MEGANAME": null, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733.0, "MAX_POP20": 2140496.0, "MAX_POP50": 3536914.0, "MAX_POP300": 3539151.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1093.0, "MAX_AREAKM": 5563.0, "MIN_AREAMI": 422.0, "MAX_AREAMI": 2148.0, "MIN_PERKM": 1180.0, "MAX_PERKM": 5081.0, "MIN_PERMI": 733.0, "MAX_PERMI": 3157.0, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 331700.0, "ELEVATION": null, "GTOPO30": 795.0, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.4987856057522808}, "geometry": {"type": "Point", "coordinates": [29.360006, -3.376087]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ADM1NAME": null, "ISO_A2": "VC", "NOTE": null, "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981.0, "MEGANAME": null, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485.0, "MAX_POP20": 49485.0, "MAX_POP50": 49485.0, "MAX_POP300": 49485.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 17.0, "MAX_AREAKM": 17.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 31.0, "MAX_PERKM": 31.0, "MIN_PERMI": 19.0, "MAX_PERMI": 19.0, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 1662.0, "ELEVATION": 5.0, "GTOPO30": 1.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.706046585298036}, "geometry": {"type": "Point", "coordinates": [-61.212062, 13.148278]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ADM1NAME": null, "ISO_A2": "LC", "NOTE": null, "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258.0, "MEGANAME": null, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343.0, "MAX_POP20": 64343.0, "MAX_POP50": 64343.0, "MAX_POP300": 64343.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 16.0, "MAX_AREAKM": 16.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 22.0, "MAX_PERKM": 22.0, "MIN_PERMI": 14.0, "MAX_PERMI": 14.0, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 5790.0, "ELEVATION": null, "GTOPO30": 47.0, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-61.000008, 14.001973]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ADM1NAME": null, "ISO_A2": "KN", "NOTE": null, "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551.0, "MEGANAME": null, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887.0, "MAX_POP20": 21887.0, "MAX_POP50": 21887.0, "MAX_POP300": 21887.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 12920.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.944181010635272}, "geometry": {"type": "Point", "coordinates": [-62.717009, 17.30203]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ADM1NAME": null, "ISO_A2": "MU", "NOTE": null, "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154.0, "MEGANAME": null, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837.0, "MAX_POP20": 595491.0, "MAX_POP50": 595491.0, "MAX_POP300": 595491.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 70.0, "MAX_AREAKM": 152.0, "MIN_AREAMI": 27.0, "MAX_AREAMI": 59.0, "MIN_PERKM": 85.0, "MAX_PERKM": 154.0, "MIN_PERMI": 53.0, "MAX_PERMI": 96.0, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 155226.0, "ELEVATION": null, "GTOPO30": 133.0, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8575940031796684}, "geometry": {"type": "Point", "coordinates": [57.499993, -20.166638]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ADM1NAME": null, "ISO_A2": "GD", "NOTE": null, "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925.0, "MEGANAME": null, "LS_NAME": "Saint George\u0089?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343.0, "MAX_POP20": 27343.0, "MAX_POP50": 27343.0, "MAX_POP300": 27343.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 10.0, "MAX_AREAKM": 10.0, "MIN_AREAMI": 4.0, "MAX_AREAMI": 4.0, "MIN_PERKM": 18.0, "MAX_PERKM": 18.0, "MIN_PERMI": 11.0, "MAX_PERMI": 11.0, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 7500.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.25335728175301775}, "geometry": {"type": "Point", "coordinates": [-61.741643, 12.052633]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ADM1NAME": null, "ISO_A2": "BH", "NOTE": null, "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340.0, "MEGANAME": null, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920.0, "MAX_POP20": 563920.0, "MAX_POP50": 563920.0, "MAX_POP300": 563920.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 178.0, "MAX_AREAKM": 178.0, "MIN_AREAMI": 69.0, "MAX_AREAMI": 69.0, "MIN_PERKM": 184.0, "MAX_PERKM": 184.0, "MIN_PERMI": 115.0, "MAX_PERMI": 115.0, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 147074.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [50.583051, 26.236136]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ADM1NAME": null, "ISO_A2": "AG", "NOTE": null, "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022.0, "MEGANAME": null, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499.0, "MAX_POP20": 35499.0, "MAX_POP50": 35499.0, "MAX_POP300": 35499.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 25.0, "MAX_AREAKM": 25.0, "MIN_AREAMI": 10.0, "MAX_AREAMI": 10.0, "MIN_PERKM": 38.0, "MAX_PERKM": 38.0, "MIN_PERMI": 24.0, "MAX_PERMI": 24.0, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 24226.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9362616214832521}, "geometry": {"type": "Point", "coordinates": [-61.850033, 17.118036]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "NOTE": null, "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018.0, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747.0, "MAX_POP20": 1381747.0, "MAX_POP50": 1381747.0, "MAX_POP300": 1381747.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 347.0, "MAX_AREAKM": 347.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 134.0, "MIN_PERKM": 266.0, "MAX_PERKM": 266.0, "MIN_PERMI": 165.0, "MAX_PERMI": 165.0, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 5324.0, "ELEVATION": 284.0, "GTOPO30": 305.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212.0, "POP1955": 1248.0, "POP1960": 1285.0, "POP1965": 1323.0, "POP1970": 1362.0, "POP1975": 1403.0, "POP1980": 1454.0, "POP1985": 1508.0, "POP1990": 1546.0, "POP1995": 1584.0, "POP2000": 1561.0, "POP2005": 1525.0, "POP2010": 1513.0, "POP2015": 1504.0, "POP2020": 1506.0, "POP2025": 1515.0, "POP2050": 1520.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-56.172998, -34.856095]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEPAR": null, "NAMEALT": "Lom\u00e9", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "NOTE": null, "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267.0, "MEGANAME": "Lom\u00e9", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448.0, "MAX_POP20": 953569.0, "MAX_POP50": 954013.0, "MAX_POP300": 953569.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 343.0, "MAX_AREAKM": 364.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 353.0, "MAX_PERKM": 360.0, "MIN_PERMI": 219.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24.0, "GN_POP": 749700.0, "ELEVATION": null, "GTOPO30": 64.0, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33.0, "POP1955": 56.0, "POP1960": 95.0, "POP1965": 138.0, "POP1970": 192.0, "POP1975": 257.0, "POP1980": 344.0, "POP1985": 466.0, "POP1990": 619.0, "POP1995": 796.0, "POP2000": 1023.0, "POP2005": 1315.0, "POP2010": 1452.0, "POP2015": 1669.0, "POP2020": 2038.0, "POP2025": 2410.0, "POP2050": 2791.0, "CITYALT": "Lome", "clustered:unrelated": 0.7946123503365328}, "geometry": {"type": "Point", "coordinates": [1.220811, 6.133882]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "NOTE": null, "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470.0, "MEGANAME": null, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176.0, "MAX_POP20": 1831176.0, "MAX_POP50": 1838972.0, "MAX_POP300": 1838972.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 480.0, "MAX_AREAKM": 502.0, "MIN_AREAMI": 185.0, "MAX_AREAMI": 194.0, "MIN_PERKM": 485.0, "MAX_PERKM": 524.0, "MIN_PERMI": 302.0, "MAX_PERMI": 326.0, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38.0, "GN_POP": 693210.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8738036978713968}, "geometry": {"type": "Point", "coordinates": [10.179678, 36.802778]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "NOTE": null, "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968.0, "MEGANAME": null, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230.0, "MAX_POP20": 560230.0, "MAX_POP50": 560230.0, "MAX_POP300": 560230.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 96.0, "MAX_AREAKM": 96.0, "MIN_AREAMI": 37.0, "MAX_AREAMI": 37.0, "MIN_PERKM": 87.0, "MAX_PERKM": 87.0, "MIN_PERMI": 54.0, "MAX_PERMI": 54.0, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 603492.0, "ELEVATION": null, "GTOPO30": 14.0, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [54.366593, 24.466683]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "NOTE": null, "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183.0, "MEGANAME": null, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982.0, "MAX_POP20": 589324.0, "MAX_POP50": 589324.0, "MAX_POP300": 589324.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 108.0, "MAX_AREAKM": 128.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 109.0, "MAX_PERKM": 144.0, "MIN_PERMI": 68.0, "MAX_PERMI": 90.0, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 727700.0, "ELEVATION": null, "GTOPO30": 219.0, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [58.383299, 37.949994]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "NOTE": null, "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137.0, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566.0, "MAX_POP20": 1289566.0, "MAX_POP50": 1289566.0, "MAX_POP300": 1289566.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 183.0, "MAX_AREAKM": 183.0, "MIN_AREAMI": 71.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 122.0, "MAX_PERKM": 122.0, "MIN_PERMI": 76.0, "MAX_PERMI": 76.0, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1267440.0, "ELEVATION": null, "GTOPO30": 1277.0, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31.0, "POP1955": 53.0, "POP1960": 91.0, "POP1965": 160.0, "POP1970": 278.0, "POP1975": 385.0, "POP1980": 533.0, "POP1985": 636.0, "POP1990": 757.0, "POP1995": 902.0, "POP2000": 1073.0, "POP2005": 1261.0, "POP2010": 1328.0, "POP2015": 1421.0, "POP2020": 1587.0, "POP2025": 1797.0, "POP2050": 2047.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [28.281381, -15.414698]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "NOTE": null, "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299.0, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439.0, "MAX_POP20": 1833439.0, "MAX_POP50": 1833439.0, "MAX_POP300": 1839463.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 310.0, "MAX_AREAKM": 326.0, "MIN_AREAMI": 120.0, "MAX_AREAMI": 126.0, "MIN_PERKM": 186.0, "MAX_PERKM": 210.0, "MIN_PERMI": 115.0, "MAX_PERMI": 130.0, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 1542813.0, "ELEVATION": null, "GTOPO30": 1481.0, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143.0, "POP1955": 192.0, "POP1960": 248.0, "POP1965": 319.0, "POP1970": 417.0, "POP1975": 532.0, "POP1980": 616.0, "POP1985": 778.0, "POP1990": 1047.0, "POP1995": 1255.0, "POP2000": 1379.0, "POP2005": 1515.0, "POP2010": 1572.0, "POP2015": 1663.0, "POP2020": 1839.0, "POP2025": 2037.0, "POP2050": 2247.0, "CITYALT": null, "clustered:unrelated": 0.39035109734227}, "geometry": {"type": "Point", "coordinates": [31.042763, -17.815843]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "NOTE": null, "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457.0, "MEGANAME": null, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154.0, "MAX_POP20": 55154.0, "MAX_POP50": 55154.0, "MAX_POP300": 55154.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 27.0, "MAX_AREAKM": 27.0, "MIN_AREAMI": 10.0, "MAX_AREAMI": 10.0, "MIN_PERKM": 31.0, "MAX_PERKM": 31.0, "MIN_PERMI": 19.0, "MAX_PERMI": 19.0, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 150000.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [125.579455, -8.559388]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "NOTE": null, "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171.0, "MEGANAME": null, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702.0, "MAX_POP20": 7702.0, "MAX_POP50": 7702.0, "MAX_POP300": 7702.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 35901.0, "ELEVATION": null, "GTOPO30": 7.0, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [168.31664, -17.73335]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Moraz\u00e1n", "ISO_A2": "HN", "NOTE": null, "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949.0, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546.0, "MAX_POP20": 1014546.0, "MAX_POP50": 1014546.0, "MAX_POP300": 1014546.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 97.0, "MAX_AREAKM": 97.0, "MIN_AREAMI": 37.0, "MAX_AREAMI": 37.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 850848.0, "ELEVATION": null, "GTOPO30": 997.0, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73.0, "POP1955": 96.0, "POP1960": 128.0, "POP1965": 169.0, "POP1970": 223.0, "POP1975": 292.0, "POP1980": 371.0, "POP1985": 471.0, "POP1990": 578.0, "POP1995": 677.0, "POP2000": 793.0, "POP2005": 901.0, "POP2010": 946.0, "POP2015": 1022.0, "POP2020": 1165.0, "POP2025": 1317.0, "POP2050": 1472.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-87.219475, 14.10399]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "NOTE": null, "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644.0, "MEGANAME": null, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350.0, "MAX_POP20": 264350.0, "MAX_POP50": 264350.0, "MAX_POP300": 264350.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 37.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 235017.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.6684481876044531}, "geometry": {"type": "Point", "coordinates": [-58.167028, 6.801973]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjav\u00edk", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Su\u00f0urnes", "ISO_A2": "IS", "NOTE": null, "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829.0, "MEGANAME": null, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212.0, "MAX_POP20": 166212.0, "MAX_POP50": 166212.0, "MAX_POP300": 166212.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 75.0, "MAX_AREAKM": 75.0, "MIN_AREAMI": 29.0, "MAX_AREAMI": 29.0, "MIN_PERKM": 119.0, "MAX_PERKM": 119.0, "MIN_PERMI": 74.0, "MAX_PERMI": 74.0, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39.0, "GN_POP": 113906.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9671239682298457}, "geometry": {"type": "Point", "coordinates": [-21.950014, 64.150023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "NOTE": null, "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426.0, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384.0, "MAX_POP20": 2445384.0, "MAX_POP50": 2445384.0, "MAX_POP300": 2445384.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 374.0, "MAX_AREAKM": 374.0, "MIN_AREAMI": 144.0, "MAX_AREAMI": 144.0, "MIN_PERKM": 287.0, "MAX_PERKM": 287.0, "MIN_PERMI": 179.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1234742.0, "ELEVATION": null, "GTOPO30": 65.0, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133.0, "POP1955": 182.0, "POP1960": 247.0, "POP1965": 337.0, "POP1970": 460.0, "POP1975": 575.0, "POP1980": 701.0, "POP1985": 881.0, "POP1990": 1134.0, "POP1995": 1427.0, "POP2000": 1653.0, "POP2005": 1885.0, "POP2010": 1998.0, "POP2015": 2209.0, "POP2020": 2621.0, "POP2025": 3012.0, "POP2050": 3346.0, "CITYALT": null, "clustered:unrelated": 0.9627137257878754}, "geometry": {"type": "Point", "coordinates": [-72.33798, 18.54297]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "NOTE": null, "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422.0, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592.0, "MAX_POP20": 2153391.0, "MAX_POP50": 2322955.0, "MAX_POP300": 2322955.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 405.0, "MAX_AREAKM": 465.0, "MIN_AREAMI": 156.0, "MAX_AREAMI": 180.0, "MIN_PERKM": 391.0, "MAX_PERKM": 470.0, "MIN_PERMI": 243.0, "MAX_PERMI": 292.0, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 1353189.0, "ELEVATION": null, "GTOPO30": 1206.0, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95.0, "POP1955": 110.0, "POP1960": 137.0, "POP1965": 222.0, "POP1970": 340.0, "POP1975": 398.0, "POP1980": 469.0, "POP1985": 595.0, "POP1990": 755.0, "POP1995": 912.0, "POP2000": 1097.0, "POP2005": 1318.0, "POP2010": 1420.0, "POP2015": 1597.0, "POP2020": 1979.0, "POP2025": 2506.0, "POP2050": 3198.0, "CITYALT": null, "clustered:unrelated": 0.726699721025253}, "geometry": {"type": "Point", "coordinates": [32.581377, 0.318604]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "NOTE": null, "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330.0, "MEGANAME": null, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169.0, "MAX_POP20": 254169.0, "MAX_POP50": 254169.0, "MAX_POP300": 254169.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 105.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 83.0, "MAX_PERKM": 85.0, "MIN_PERMI": 51.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 223757.0, "ELEVATION": null, "GTOPO30": 3.0, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-55.16703, 5.83503]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "NOTE": null, "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485.0, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791.0, "MAX_POP20": 742791.0, "MAX_POP50": 742791.0, "MAX_POP300": 742791.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 122.0, "MAX_AREAKM": 122.0, "MIN_AREAMI": 47.0, "MAX_AREAMI": 47.0, "MIN_PERKM": 102.0, "MAX_PERKM": 102.0, "MIN_PERMI": 64.0, "MAX_PERMI": 64.0, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 774235.0, "ELEVATION": null, "GTOPO30": 203.0, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24.0, "POP1955": 37.0, "POP1960": 58.0, "POP1965": 85.0, "POP1970": 129.0, "POP1975": 198.0, "POP1980": 274.0, "POP1985": 344.0, "POP1990": 432.0, "POP1995": 542.0, "POP2000": 680.0, "POP2005": 846.0, "POP2010": 915.0, "POP2015": 1027.0, "POP2020": 1258.0, "POP2025": 1580.0, "POP2050": 2028.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.11471, 13.518651]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "NOTE": null, "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874.0, "MEGANAME": null, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244.0, "MAX_POP20": 1086244.0, "MAX_POP50": 1086244.0, "MAX_POP300": 1086244.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 415.0, "MAX_AREAKM": 415.0, "MIN_AREAMI": 160.0, "MAX_AREAMI": 160.0, "MIN_PERKM": 411.0, "MAX_PERKM": 411.0, "MIN_PERMI": 255.0, "MAX_PERMI": 255.0, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 543107.0, "ELEVATION": null, "GTOPO30": 808.0, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [68.773879, 38.560035]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEPAR": null, "NAMEALT": "Asunci\u00f3n", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunci\u00f3n", "ISO_A2": "PY", "NOTE": null, "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025.0, "MEGANAME": "Asunci\u00f3n", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924.0, "MAX_POP20": 1829910.0, "MAX_POP50": 2141255.0, "MAX_POP300": 2141255.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 105.0, "MAX_AREAKM": 651.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 251.0, "MIN_PERKM": 63.0, "MAX_PERKM": 331.0, "MIN_PERMI": 39.0, "MAX_PERMI": 206.0, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24.0, "GN_POP": 11693.0, "ELEVATION": null, "GTOPO30": 24.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258.0, "POP1955": 314.0, "POP1960": 382.0, "POP1965": 461.0, "POP1970": 552.0, "POP1975": 654.0, "POP1980": 770.0, "POP1985": 914.0, "POP1990": 1091.0, "POP1995": 1287.0, "POP2000": 1507.0, "POP2005": 1762.0, "POP2010": 1870.0, "POP2015": 2030.0, "POP2020": 2277.0, "POP2025": 2506.0, "POP2050": 2715.0, "CITYALT": "Asuncion", "clustered:unrelated": 0.36447252964767995}, "geometry": {"type": "Point", "coordinates": [-57.643451, -25.294457]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "NOTE": null, "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763.0, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973.0, "MAX_POP20": 1105973.0, "MAX_POP50": 1105973.0, "MAX_POP300": 1105973.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 131.0, "MAX_AREAKM": 131.0, "MIN_AREAMI": 51.0, "MAX_AREAMI": 51.0, "MIN_PERKM": 97.0, "MAX_PERKM": 97.0, "MIN_PERMI": 60.0, "MAX_PERMI": 60.0, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 973087.0, "ELEVATION": null, "GTOPO30": 59.0, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110.0, "POP1955": 148.0, "POP1960": 199.0, "POP1965": 269.0, "POP1970": 366.0, "POP1975": 443.0, "POP1980": 525.0, "POP1985": 621.0, "POP1990": 735.0, "POP1995": 865.0, "POP2000": 887.0, "POP2005": 909.0, "POP2010": 920.0, "POP2015": 944.0, "POP2020": 1015.0, "POP2025": 1104.0, "POP2050": 1193.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-86.270437, 12.154962]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "NOTE": null, "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770.0, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311.0, "MAX_POP20": 1074311.0, "MAX_POP50": 1074311.0, "MAX_POP300": 1074311.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 77.0, "MAX_AREAKM": 77.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 81.0, "MAX_PERKM": 81.0, "MIN_PERMI": 50.0, "MAX_PERMI": 50.0, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4.0, "GN_POP": 13768.0, "ELEVATION": null, "GTOPO30": 15.0, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92.0, "POP1955": 104.0, "POP1960": 119.0, "POP1965": 148.0, "POP1970": 206.0, "POP1975": 284.0, "POP1980": 361.0, "POP1985": 460.0, "POP1990": 529.0, "POP1995": 603.0, "POP2000": 688.0, "POP2005": 785.0, "POP2010": 827.0, "POP2015": 894.0, "POP2020": 1029.0, "POP2025": 1200.0, "POP2050": 1406.0, "CITYALT": null, "clustered:unrelated": 0.52734451306556}, "geometry": {"type": "Point", "coordinates": [-13.236161, 8.471957]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "NOTE": null, "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615.0, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356.0, "MAX_POP20": 742356.0, "MAX_POP50": 7482035.0, "MAX_POP300": 7482969.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 772.0, "MAX_AREAKM": 5463.0, "MIN_AREAMI": 298.0, "MAX_AREAMI": 2109.0, "MIN_PERKM": 545.0, "MAX_PERKM": 4154.0, "MIN_PERMI": 339.0, "MAX_PERMI": 2581.0, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 601600.0, "ELEVATION": null, "GTOPO30": 497.0, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36.0, "POP1955": 41.0, "POP1960": 45.0, "POP1965": 56.0, "POP1970": 70.0, "POP1975": 107.0, "POP1980": 189.0, "POP1985": 260.0, "POP1990": 343.0, "POP1995": 452.0, "POP2000": 594.0, "POP2005": 732.0, "POP2010": 780.0, "POP2015": 851.0, "POP2020": 988.0, "POP2025": 1148.0, "POP2050": 1320.0, "CITYALT": null, "clustered:unrelated": 0.4632515655175451}, "geometry": {"type": "Point", "coordinates": [73.164688, 33.701941]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "NOTE": null, "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240.0, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222.0, "MAX_POP20": 2297630.0, "MAX_POP50": 2297630.0, "MAX_POP300": 2297630.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 233.0, "MAX_AREAKM": 580.0, "MIN_AREAMI": 90.0, "MAX_AREAMI": 224.0, "MIN_PERKM": 228.0, "MAX_PERKM": 511.0, "MIN_PERMI": 142.0, "MAX_PERMI": 318.0, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1442271.0, "ELEVATION": 1317.0, "GTOPO30": 1304.0, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104.0, "POP1955": 110.0, "POP1960": 119.0, "POP1965": 132.0, "POP1970": 147.0, "POP1975": 180.0, "POP1980": 225.0, "POP1985": 297.0, "POP1990": 398.0, "POP1995": 509.0, "POP2000": 644.0, "POP2005": 815.0, "POP2010": 895.0, "POP2015": 1029.0, "POP2020": 1284.0, "POP2025": 1578.0, "POP2050": 1907.0, "CITYALT": null, "clustered:unrelated": 0.3839615118791385}, "geometry": {"type": "Point", "coordinates": [85.314696, 27.718637]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Judicial capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725.0, "MEGANAME": null, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669.0, "MAX_POP20": 456669.0, "MAX_POP50": 456669.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 105.0, "MAX_AREAKM": 105.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 78.0, "MAX_PERKM": 78.0, "MIN_PERMI": 48.0, "MAX_PERMI": 48.0, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3.0, "GN_POP": 463064.0, "ELEVATION": null, "GTOPO30": 1398.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.828314783938137}, "geometry": {"type": "Point", "coordinates": [26.229912, -29.119993]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137.0, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949.0, "MAX_POP20": 1444949.0, "MAX_POP50": 1444949.0, "MAX_POP300": 1444949.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 502.0, "MAX_AREAKM": 502.0, "MIN_AREAMI": 194.0, "MAX_AREAMI": 194.0, "MIN_PERKM": 256.0, "MAX_PERKM": 256.0, "MIN_PERMI": 159.0, "MAX_PERMI": 159.0, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 1619438.0, "ELEVATION": null, "GTOPO30": 1282.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275.0, "POP1955": 340.0, "POP1960": 419.0, "POP1965": 488.0, "POP1970": 565.0, "POP1975": 624.0, "POP1980": 688.0, "POP1985": 763.0, "POP1990": 911.0, "POP1995": 951.0, "POP2000": 1084.0, "POP2005": 1273.0, "POP2010": 1338.0, "POP2015": 1409.0, "POP2020": 1482.0, "POP2025": 1544.0, "POP2050": 1604.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [28.227483, -25.704974]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "NOTE": null, "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122.0, "MEGANAME": null, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136.0, "MAX_POP20": 251136.0, "MAX_POP50": 251136.0, "MAX_POP300": 251136.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 92.0, "MAX_PERKM": 92.0, "MIN_PERMI": 57.0, "MAX_PERMI": 57.0, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 283733.0, "ELEVATION": null, "GTOPO30": 50.0, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [147.192503, -9.464707]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "NOTE": null, "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502.0, "MEGANAME": null, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328.0, "MAX_POP20": 76328.0, "MAX_POP50": 76328.0, "MAX_POP300": 76328.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 18.0, "MAX_AREAKM": 18.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 33.0, "MAX_PERKM": 33.0, "MIN_PERMI": 21.0, "MAX_PERMI": 21.0, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 56298.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [159.949765, -9.437994]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEPAR": null, "NAMEALT": "Ciudad de Panam\u00e1|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "NOTE": null, "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443.0, "MEGANAME": "Ciudad de Panam\u00e1 (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016.0, "MAX_POP20": 958016.0, "MAX_POP50": 989053.0, "MAX_POP300": 989053.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 157.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 61.0, "MIN_PERKM": 98.0, "MAX_PERKM": 107.0, "MIN_PERMI": 61.0, "MAX_PERMI": 66.0, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 408168.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9.0, "UN_LONG": -79.51, "POP1950": 171.0, "POP1955": 220.0, "POP1960": 283.0, "POP1965": 360.0, "POP1970": 455.0, "POP1975": 528.0, "POP1980": 613.0, "POP1985": 721.0, "POP1990": 847.0, "POP1995": 953.0, "POP2000": 1072.0, "POP2005": 1216.0, "POP2010": 1281.0, "POP2015": 1379.0, "POP2020": 1527.0, "POP2025": 1653.0, "POP2050": 1759.0, "CITYALT": "Panama"}, "geometry": {"type": "Point", "coordinates": [-79.534983, 8.969963]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Sal\u00e9 - Zemmour - Zaer", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475.0, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124.0, "MAX_POP20": 2037124.0, "MAX_POP50": 2037124.0, "MAX_POP300": 2037124.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 428.0, "MAX_AREAKM": 428.0, "MIN_AREAMI": 165.0, "MAX_AREAMI": 165.0, "MIN_PERKM": 475.0, "MAX_PERKM": 475.0, "MIN_PERMI": 295.0, "MAX_PERMI": 295.0, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49.0, "GN_POP": 1655753.0, "ELEVATION": null, "GTOPO30": 54.0, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145.0, "POP1955": 184.0, "POP1960": 233.0, "POP1965": 339.0, "POP1970": 494.0, "POP1975": 641.0, "POP1980": 808.0, "POP1985": 986.0, "POP1990": 1174.0, "POP1995": 1379.0, "POP2000": 1507.0, "POP2005": 1647.0, "POP2010": 1705.0, "POP2015": 1793.0, "POP2020": 1938.0, "POP2025": 2083.0, "POP2050": 2222.0, "CITYALT": null, "clustered:unrelated": 0.15142896193684685}, "geometry": {"type": "Point", "coordinates": [-6.836408, 34.025307]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "NOTE": null, "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426.0, "MEGANAME": null, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134.0, "MAX_POP20": 688134.0, "MAX_POP50": 688134.0, "MAX_POP300": 688134.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 109.0, "MAX_AREAKM": 109.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 42.0, "MIN_PERKM": 85.0, "MAX_PERKM": 85.0, "MIN_PERMI": 53.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57.0, "GN_POP": 635994.0, "ELEVATION": null, "GTOPO30": 52.0, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.1820751208164918}, "geometry": {"type": "Point", "coordinates": [28.857711, 47.005023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "NOTE": null, "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652.0, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629.0, "MAX_POP20": 1823845.0, "MAX_POP50": 1822603.0, "MAX_POP300": 1823845.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 187.0, "MAX_AREAKM": 313.0, "MIN_AREAMI": 72.0, "MAX_AREAMI": 121.0, "MIN_PERKM": 160.0, "MAX_PERKM": 234.0, "MIN_PERMI": 100.0, "MAX_PERMI": 145.0, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1191613.0, "ELEVATION": null, "GTOPO30": 47.0, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92.0, "POP1955": 129.0, "POP1960": 181.0, "POP1965": 259.0, "POP1970": 371.0, "POP1975": 456.0, "POP1980": 550.0, "POP1985": 653.0, "POP1990": 776.0, "POP1995": 921.0, "POP2000": 1096.0, "POP2005": 1334.0, "POP2010": 1446.0, "POP2015": 1621.0, "POP2020": 1921.0, "POP2025": 2235.0, "POP2050": 2560.0, "CITYALT": null, "clustered:unrelated": 0.5689907542791324}, "geometry": {"type": "Point", "coordinates": [32.587217, -25.953331]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEPAR": null, "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "NOTE": null, "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654.0, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388.0, "MAX_POP20": 875388.0, "MAX_POP50": 875388.0, "MAX_POP300": 875388.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 99.0, "MAX_AREAKM": 99.0, "MIN_AREAMI": 38.0, "MAX_AREAMI": 38.0, "MIN_PERKM": 68.0, "MAX_PERKM": 68.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2.0, "MAX_BBYMIN": 2.0, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 2587183.0, "ELEVATION": null, "GTOPO30": 39.0, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69.0, "POP1955": 73.0, "POP1960": 94.0, "POP1965": 146.0, "POP1970": 272.0, "POP1975": 445.0, "POP1980": 551.0, "POP1985": 747.0, "POP1990": 1035.0, "POP1995": 1147.0, "POP2000": 1201.0, "POP2005": 1415.0, "POP2010": 1100.0, "POP2015": 1500.0, "POP2020": 1794.0, "POP2025": 2142.0, "POP2050": 2529.0, "CITYALT": "Mogadishu", "clustered:unrelated": 0.06428336674211432}, "geometry": {"type": "Point", "coordinates": [45.364731, 2.068627]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "NOTE": null, "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286.0, "MEGANAME": null, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861.0, "MAX_POP20": 586861.0, "MAX_POP50": 586861.0, "MAX_POP300": 586861.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 797000.0, "ELEVATION": null, "GTOPO30": 69.0, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [58.593312, 23.613324]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "NOTE": null, "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927.0, "MEGANAME": null, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418.0, "MAX_POP20": 2742979.0, "MAX_POP50": 2742979.0, "MAX_POP300": 9759831.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1054.0, "MAX_AREAKM": 6238.0, "MIN_AREAMI": 407.0, "MAX_AREAMI": 2408.0, "MIN_PERKM": 847.0, "MAX_PERKM": 5343.0, "MIN_PERMI": 526.0, "MAX_PERMI": 3320.0, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18.0, "GN_POP": 217000.0, "ELEVATION": null, "GTOPO30": 927.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8767430596115461}, "geometry": {"type": "Point", "coordinates": [79.85775, 6.931965]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "NOTE": null, "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462.0, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612.0, "MAX_POP20": 769612.0, "MAX_POP50": 769612.0, "MAX_POP300": 769612.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 143.0, "MAX_AREAKM": 143.0, "MIN_AREAMI": 55.0, "MAX_AREAMI": 55.0, "MIN_PERKM": 144.0, "MAX_PERKM": 144.0, "MIN_PERMI": 89.0, "MAX_PERMI": 89.0, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 844818.0, "ELEVATION": null, "GTOPO30": 1299.0, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70.0, "POP1955": 112.0, "POP1960": 179.0, "POP1965": 248.0, "POP1970": 298.0, "POP1975": 356.0, "POP1980": 423.0, "POP1985": 492.0, "POP1990": 572.0, "POP1995": 661.0, "POP2000": 763.0, "POP2005": 856.0, "POP2010": 885.0, "POP2015": 919.0, "POP2020": 978.0, "POP2025": 1044.0, "POP2050": 1112.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [106.914669, 47.918619]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "NOTE": null, "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168.0, "MEGANAME": null, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164.0, "MAX_POP20": 144164.0, "MAX_POP50": 144164.0, "MAX_POP300": 144164.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 77.0, "MAX_AREAKM": 77.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 79.0, "MAX_PERKM": 79.0, "MIN_PERMI": 49.0, "MAX_PERMI": 49.0, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 5428.0, "ELEVATION": null, "GTOPO30": 304.0, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [174.783274, -41.299973]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "NOTE": null, "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136.0, "MEGANAME": null, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796.0, "MAX_POP20": 262796.0, "MAX_POP50": 262796.0, "MAX_POP300": 262796.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 60.0, "MAX_PERKM": 60.0, "MIN_PERMI": 37.0, "MAX_PERMI": 37.0, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21.0, "GN_POP": 268132.0, "ELEVATION": null, "GTOPO30": 1722.0, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5515023043452999}, "geometry": {"type": "Point", "coordinates": [17.083546, -22.570006]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official and ad", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "NOTE": null, "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794.0, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258.0, "MAX_POP20": 655258.0, "MAX_POP50": 655258.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 174.0, "MAX_AREAKM": 174.0, "MIN_AREAMI": 67.0, "MAX_AREAMI": 67.0, "MIN_PERKM": 162.0, "MAX_PERKM": 162.0, "MIN_PERMI": 101.0, "MAX_PERMI": 101.0, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 162135.0, "ELEVATION": null, "GTOPO30": 339.0, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18.0, "POP1955": 21.0, "POP1960": 23.0, "POP1965": 29.0, "POP1970": 48.0, "POP1975": 77.0, "POP1980": 125.0, "POP1985": 204.0, "POP1990": 330.0, "POP1995": 526.0, "POP2000": 832.0, "POP2005": 1315.0, "POP2010": 1576.0, "POP2015": 1994.0, "POP2020": 2558.0, "POP2025": 2971.0, "POP2050": 3358.0, "CITYALT": null, "clustered:unrelated": 0.8874586090818559}, "geometry": {"type": "Point", "coordinates": [7.531382, 9.085279]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "NOTE": null, "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775.0, "MEGANAME": null, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339.0, "MAX_POP20": 403339.0, "MAX_POP50": 403339.0, "MAX_POP300": 403339.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 70.0, "MAX_AREAKM": 70.0, "MIN_AREAMI": 27.0, "MAX_AREAMI": 27.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 388028.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3123377764548536}, "geometry": {"type": "Point", "coordinates": [-15.59836, 11.865023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "NOTE": null, "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441.0, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138.0, "MAX_POP20": 3684787.0, "MAX_POP50": 3684787.0, "MAX_POP300": 3684787.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 403.0, "MAX_AREAKM": 545.0, "MIN_AREAMI": 156.0, "MAX_AREAMI": 210.0, "MIN_PERKM": 258.0, "MAX_PERKM": 361.0, "MIN_PERMI": 160.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1275857.0, "ELEVATION": null, "GTOPO30": 765.0, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90.0, "POP1955": 140.0, "POP1960": 218.0, "POP1965": 299.0, "POP1970": 388.0, "POP1975": 500.0, "POP1980": 636.0, "POP1985": 736.0, "POP1990": 851.0, "POP1995": 973.0, "POP2000": 1007.0, "POP2005": 1042.0, "POP2010": 1060.0, "POP2015": 1106.0, "POP2020": 1185.0, "POP2025": 1268.0, "POP2050": 1359.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.931354, 31.951971]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "NOTE": null, "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116.0, "MEGANAME": null, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029.0, "MAX_POP20": 507029.0, "MAX_POP50": 507029.0, "MAX_POP300": 507029.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 126.0, "MAX_AREAKM": 126.0, "MIN_AREAMI": 49.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 162.0, "MAX_PERKM": 162.0, "MIN_PERMI": 101.0, "MAX_PERMI": 101.0, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65.0, "GN_POP": 542366.0, "ELEVATION": null, "GTOPO30": 125.0, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [25.316635, 54.683366]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "NOTE": null, "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172.0, "MEGANAME": null, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033.0, "MAX_POP20": 705033.0, "MAX_POP50": 705033.0, "MAX_POP300": 705033.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 171.0, "MAX_AREAKM": 171.0, "MIN_AREAMI": 66.0, "MAX_AREAMI": 66.0, "MIN_PERKM": 173.0, "MAX_PERKM": 173.0, "MIN_PERMI": 108.0, "MAX_PERMI": 108.0, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25.0, "GN_POP": 742572.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.099965, 56.950023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "NOTE": null, "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675.0, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212.0, "MAX_POP20": 804212.0, "MAX_POP50": 804212.0, "MAX_POP300": 804212.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 245.0, "MAX_AREAKM": 245.0, "MIN_AREAMI": 94.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 190.0, "MAX_PERKM": 190.0, "MIN_PERMI": 118.0, "MAX_PERMI": 118.0, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43.0, "MAX_BBYMAX": 43.0, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 900000.0, "ELEVATION": null, "GTOPO30": 772.0, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150.0, "POP1955": 186.0, "POP1960": 236.0, "POP1965": 322.0, "POP1970": 433.0, "POP1975": 485.0, "POP1980": 538.0, "POP1985": 583.0, "POP1990": 635.0, "POP1995": 703.0, "POP2000": 770.0, "POP2005": 817.0, "POP2010": 837.0, "POP2015": 869.0, "POP2020": 934.0, "POP2025": 1011.0, "POP2050": 1096.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [74.583258, 42.875025]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "NOTE": null, "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505.0, "MEGANAME": null, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324.0, "MAX_POP20": 361324.0, "MAX_POP50": 361324.0, "MAX_POP300": 361324.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 141.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 54.0, "MIN_PERKM": 177.0, "MAX_PERKM": 177.0, "MIN_PERMI": 110.0, "MAX_PERMI": 110.0, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 118355.0, "ELEVATION": null, "GTOPO30": 1482.0, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [27.483273, -29.316674]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "NOTE": null, "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940.0, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538.0, "MAX_POP20": 1727538.0, "MAX_POP50": 1727538.0, "MAX_POP300": 1727538.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 700.0, "MAX_AREAKM": 700.0, "MIN_AREAMI": 270.0, "MAX_AREAMI": 270.0, "MIN_PERKM": 699.0, "MAX_PERKM": 699.0, "MIN_PERMI": 434.0, "MAX_PERMI": 434.0, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1391433.0, "ELEVATION": null, "GTOPO30": 1289.0, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177.0, "POP1955": 189.0, "POP1960": 252.0, "POP1965": 298.0, "POP1970": 363.0, "POP1975": 454.0, "POP1980": 580.0, "POP1985": 742.0, "POP1990": 948.0, "POP1995": 1169.0, "POP2000": 1361.0, "POP2005": 1590.0, "POP2010": 1697.0, "POP2015": 1877.0, "POP2020": 2229.0, "POP2025": 2642.0, "POP2050": 3118.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [47.514678, -18.914691]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "NOTE": null, "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462.0, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051.0, "MAX_POP20": 1892286.0, "MAX_POP50": 1892286.0, "MAX_POP300": 1892286.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 334.0, "MAX_AREAKM": 496.0, "MIN_AREAMI": 129.0, "MAX_AREAMI": 191.0, "MIN_PERKM": 233.0, "MAX_PERKM": 359.0, "MIN_PERMI": 145.0, "MAX_PERMI": 223.0, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 1399814.0, "ELEVATION": null, "GTOPO30": 2764.0, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206.0, "POP1955": 257.0, "POP1960": 319.0, "POP1965": 399.0, "POP1970": 501.0, "POP1975": 628.0, "POP1980": 780.0, "POP1985": 936.0, "POP1990": 1088.0, "POP1995": 1217.0, "POP2000": 1357.0, "POP2005": 1593.0, "POP2010": 1701.0, "POP2015": 1846.0, "POP2020": 2035.0, "POP2025": 2189.0, "POP2050": 2316.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-78.501996, -0.213042]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEPAR": null, "NAMEALT": "San Jos\u00e9", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Jos\u00e9", "ISO_A2": "CR", "NOTE": null, "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623.0, "MEGANAME": "San Jos\u00e9", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902.0, "MAX_POP20": 1826034.0, "MAX_POP50": 1826034.0, "MAX_POP300": 1826034.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 264.0, "MAX_AREAKM": 431.0, "MIN_AREAMI": 102.0, "MAX_AREAMI": 166.0, "MIN_PERKM": 136.0, "MAX_PERKM": 270.0, "MIN_PERMI": 84.0, "MAX_PERMI": 168.0, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37.0, "GN_POP": 1724.0, "ELEVATION": null, "GTOPO30": 1468.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148.0, "POP1955": 184.0, "POP1960": 230.0, "POP1965": 287.0, "POP1970": 359.0, "POP1975": 440.0, "POP1980": 526.0, "POP1985": 627.0, "POP1990": 737.0, "POP1995": 867.0, "POP2000": 1032.0, "POP2005": 1217.0, "POP2010": 1284.0, "POP2015": 1374.0, "POP2020": 1506.0, "POP2025": 1627.0, "POP2050": 1737.0, "CITYALT": "San Jose"}, "geometry": {"type": "Point", "coordinates": [-84.085997, 9.936958]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "NOTE": null, "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681.0, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614.0, "MAX_POP20": 2150614.0, "MAX_POP50": 2150614.0, "MAX_POP300": 2150614.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 379.0, "MAX_AREAKM": 379.0, "MIN_AREAMI": 146.0, "MAX_AREAMI": 146.0, "MIN_PERKM": 347.0, "MAX_PERKM": 347.0, "MIN_PERMI": 215.0, "MAX_PERMI": 215.0, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30.0, "GN_POP": 2807.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194.0, "POP1955": 246.0, "POP1960": 311.0, "POP1965": 394.0, "POP1970": 500.0, "POP1975": 596.0, "POP1980": 701.0, "POP1985": 825.0, "POP1990": 970.0, "POP1995": 1107.0, "POP2000": 1233.0, "POP2005": 1374.0, "POP2010": 1433.0, "POP2015": 1520.0, "POP2020": 1649.0, "POP2025": 1776.0, "POP2050": 1902.0, "CITYALT": null, "clustered:unrelated": 0.03946175694603782}, "geometry": {"type": "Point", "coordinates": [-89.204987, 13.711947]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "NOTE": null, "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854.0, "MEGANAME": null, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973.0, "MAX_POP20": 664973.0, "MAX_POP50": 664973.0, "MAX_POP300": 664973.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 120.0, "MAX_AREAKM": 120.0, "MIN_AREAMI": 46.0, "MAX_AREAMI": 46.0, "MIN_PERKM": 69.0, "MAX_PERKM": 69.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 937700.0, "ELEVATION": null, "GTOPO30": 54.0, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5585395725842648}, "geometry": {"type": "Point", "coordinates": [-76.767433, 17.977076]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEPAR": null, "NAMEALT": "N'Djam\u00e9na", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "NOTE": null, "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123.0, "MEGANAME": "N'Djam\u00e9na", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387.0, "MAX_POP20": 681387.0, "MAX_POP50": 681387.0, "MAX_POP300": 681387.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 79.0, "MAX_AREAKM": 79.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 721081.0, "ELEVATION": null, "GTOPO30": 290.0, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22.0, "POP1955": 40.0, "POP1960": 71.0, "POP1965": 109.0, "POP1970": 155.0, "POP1975": 231.0, "POP1980": 324.0, "POP1985": 393.0, "POP1990": 477.0, "POP1995": 579.0, "POP2000": 711.0, "POP2005": 902.0, "POP2010": 989.0, "POP2015": 1127.0, "POP2020": 1405.0, "POP2025": 1753.0, "POP2050": 2172.0, "CITYALT": "Ndjamena", "clustered:unrelated": 0.8133859444247767}, "geometry": {"type": "Point", "coordinates": [15.047202, 12.115042]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "NOTE": null, "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527.0, "MEGANAME": null, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314.0, "MAX_POP20": 314.0, "MAX_POP50": 314.0, "MAX_POP300": 314.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1.0, "MAX_AREAKM": 1.0, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": 4.0, "MAX_PERKM": 4.0, "MIN_PERMI": 2.0, "MAX_PERMI": 2.0, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 155963.0, "ELEVATION": null, "GTOPO30": 111.0, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9392969426264304}, "geometry": {"type": "Point", "coordinates": [8.783277, 3.750015]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "NOTE": null, "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300.0, "MEGANAME": null, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802.0, "MAX_POP20": 620802.0, "MAX_POP50": 620802.0, "MAX_POP300": 620802.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 90.0, "MAX_AREAKM": 90.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 93.0, "MAX_PERKM": 93.0, "MIN_PERMI": 58.0, "MAX_PERMI": 58.0, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 563930.0, "ELEVATION": null, "GTOPO30": 2360.0, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.10955268512327665}, "geometry": {"type": "Point", "coordinates": [38.933323, 15.333339]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "NOTE": null, "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886.0, "MEGANAME": null, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526.0, "MAX_POP20": 722526.0, "MAX_POP50": 722526.0, "MAX_POP300": 722526.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 244.0, "MAX_AREAKM": 244.0, "MIN_AREAMI": 94.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 223.0, "MAX_PERKM": 223.0, "MIN_PERMI": 138.0, "MAX_PERMI": 138.0, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21.0, "GN_POP": 698966.0, "ELEVATION": null, "GTOPO30": 131.0, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.999994, 45.800006]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "NOTE": null, "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409.0, "MEGANAME": null, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027.0, "MAX_POP20": 340027.0, "MAX_POP50": 340027.0, "MAX_POP300": 340027.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 130.0, "MAX_AREAKM": 130.0, "MIN_AREAMI": 50.0, "MAX_AREAMI": 50.0, "MIN_PERKM": 164.0, "MAX_PERKM": 164.0, "MIN_PERMI": 102.0, "MAX_PERMI": 102.0, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 394024.0, "ELEVATION": null, "GTOPO30": 22.0, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.72804, 59.433877]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "NOTE": null, "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967.0, "MEGANAME": null, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164.0, "MAX_POP20": 912521.0, "MAX_POP50": 989470.0, "MAX_POP300": 989470.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1100.0, "MAX_AREAKM": 1373.0, "MIN_AREAMI": 425.0, "MAX_AREAMI": 530.0, "MIN_PERKM": 1360.0, "MAX_PERKM": 1658.0, "MIN_PERMI": 845.0, "MAX_PERMI": 1030.0, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 646750.0, "ELEVATION": null, "GTOPO30": 1025.0, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [33.783301, -13.983295]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEPAR": null, "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "NOTE": null, "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132.0, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941.0, "MAX_POP20": 2417882.0, "MAX_POP50": 2419489.0, "MAX_POP300": 2419489.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 410.0, "MAX_AREAKM": 419.0, "MIN_AREAMI": 158.0, "MAX_AREAMI": 162.0, "MIN_PERKM": 274.0, "MAX_PERKM": 288.0, "MIN_PERMI": 170.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 994938.0, "ELEVATION": null, "GTOPO30": 1533.0, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287.0, "POP1955": 370.0, "POP1960": 476.0, "POP1965": 592.0, "POP1970": 660.0, "POP1975": 715.0, "POP1980": 749.0, "POP1985": 776.0, "POP1990": 803.0, "POP1995": 839.0, "POP2000": 908.0, "POP2005": 984.0, "POP2010": 1024.0, "POP2015": 1104.0, "POP2020": 1281.0, "POP2025": 1481.0, "POP2050": 1690.0, "CITYALT": "Guatemala"}, "geometry": {"type": "Point", "coordinates": [-90.528911, 14.62308]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "NOTE": null, "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697.0, "MEGANAME": null, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355.0, "MAX_POP20": 483355.0, "MAX_POP50": 483355.0, "MAX_POP300": 483355.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 108.0, "MAX_AREAKM": 108.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 42.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 578156.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.060328296634250655}, "geometry": {"type": "Point", "coordinates": [9.457965, 0.385388]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "NOTE": null, "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148.0, "MEGANAME": null, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230.0, "MAX_POP20": 143230.0, "MAX_POP50": 143230.0, "MAX_POP300": 143230.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 53.0, "MAX_AREAKM": 53.0, "MIN_AREAMI": 20.0, "MAX_AREAMI": 20.0, "MIN_PERKM": 56.0, "MAX_PERKM": 56.0, "MIN_PERMI": 35.0, "MAX_PERMI": 35.0, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 77366.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [178.441707, -18.133015]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEPAR": null, "NAMEALT": "Valpara\u00edso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valpara\u00edso", "ISO_A2": "CL", "NOTE": null, "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575.0, "MEGANAME": "Valpara\u00edso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390.0, "MAX_POP20": 637860.0, "MAX_POP50": 637860.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 34.0, "MAX_AREAKM": 184.0, "MIN_AREAMI": 13.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 33.0, "MAX_PERKM": 151.0, "MIN_PERMI": 21.0, "MAX_PERMI": 94.0, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27.0, "GN_POP": 15938.0, "ELEVATION": null, "GTOPO30": 405.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328.0, "POP1955": 377.0, "POP1960": 433.0, "POP1965": 481.0, "POP1970": 532.0, "POP1975": 581.0, "POP1980": 635.0, "POP1985": 685.0, "POP1990": 733.0, "POP1995": 771.0, "POP2000": 803.0, "POP2005": 838.0, "POP2010": 854.0, "POP2015": 880.0, "POP2020": 922.0, "POP2025": 956.0, "POP2050": 982.0, "CITYALT": "Valparaiso"}, "geometry": {"type": "Point", "coordinates": [-71.622959, -33.045818]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "NOTE": null, "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450.0, "MEGANAME": null, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144.0, "MAX_POP20": 742144.0, "MAX_POP50": 742144.0, "MAX_POP300": 742144.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 98.0, "MAX_AREAKM": 98.0, "MIN_AREAMI": 38.0, "MAX_AREAMI": 38.0, "MIN_PERKM": 92.0, "MAX_PERKM": 92.0, "MIN_PERMI": 57.0, "MAX_PERMI": 57.0, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 661400.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.21574236803042446}, "geometry": {"type": "Point", "coordinates": [-15.97534, 18.086427]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "NOTE": null, "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596.0, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564.0, "MAX_POP20": 1316564.0, "MAX_POP50": 1316564.0, "MAX_POP300": 1316564.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 172.0, "MAX_AREAKM": 172.0, "MIN_AREAMI": 66.0, "MAX_AREAMI": 66.0, "MIN_PERKM": 106.0, "MAX_PERKM": 106.0, "MIN_PERMI": 66.0, "MAX_PERMI": 66.0, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1297281.0, "ELEVATION": null, "GTOPO30": 350.0, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89.0, "POP1955": 111.0, "POP1960": 130.0, "POP1965": 158.0, "POP1970": 222.0, "POP1975": 363.0, "POP1980": 489.0, "POP1985": 608.0, "POP1990": 746.0, "POP1995": 910.0, "POP2000": 1110.0, "POP2005": 1368.0, "POP2010": 1494.0, "POP2015": 1708.0, "POP2020": 2130.0, "POP2025": 2633.0, "POP2050": 3214.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-8.001984, 12.65196]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEPAR": null, "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "NOTE": null, "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781.0, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125.0, "MAX_POP20": 1712468.0, "MAX_POP50": 1740692.0, "MAX_POP300": 1740692.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 429.0, "MAX_AREAKM": 471.0, "MIN_AREAMI": 166.0, "MAX_AREAMI": 182.0, "MIN_PERKM": 403.0, "MAX_PERKM": 457.0, "MIN_PERMI": 251.0, "MAX_PERMI": 284.0, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 1916100.0, "ELEVATION": null, "GTOPO30": 56.0, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322.0, "POP1955": 425.0, "POP1960": 561.0, "POP1965": 733.0, "POP1970": 923.0, "POP1975": 1500.0, "POP1980": 1623.0, "POP1985": 1585.0, "POP1990": 1293.0, "POP1995": 1268.0, "POP2000": 1487.0, "POP2005": 1777.0, "POP2010": 1846.0, "POP2015": 1941.0, "POP2020": 2051.0, "POP2025": 2119.0, "POP2050": 2173.0, "CITYALT": "Beirut"}, "geometry": {"type": "Point", "coordinates": [35.507762, 33.87392]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEPAR": null, "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "NOTE": null, "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717.0, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257.0, "MAX_POP20": 1005257.0, "MAX_POP50": 1007529.0, "MAX_POP300": 1007529.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 131.0, "MAX_AREAKM": 135.0, "MIN_AREAMI": 51.0, "MAX_AREAMI": 52.0, "MIN_PERKM": 128.0, "MAX_PERKM": 133.0, "MIN_PERMI": 80.0, "MAX_PERMI": 83.0, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1049498.0, "ELEVATION": null, "GTOPO30": 420.0, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612.0, "POP1955": 659.0, "POP1960": 718.0, "POP1965": 803.0, "POP1970": 897.0, "POP1975": 992.0, "POP1980": 1090.0, "POP1985": 1177.0, "POP1990": 1224.0, "POP1995": 1160.0, "POP2000": 1100.0, "POP2005": 1093.0, "POP2010": 1100.0, "POP2015": 1108.0, "POP2020": 1113.0, "POP2025": 1114.0, "POP2050": 1114.0, "CITYALT": "T'Bilisi"}, "geometry": {"type": "Point", "coordinates": [44.788849, 41.726955]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "NOTE": null, "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273.0, "MEGANAME": null, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021.0, "MAX_POP20": 325021.0, "MAX_POP50": 325021.0, "MAX_POP300": 325021.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 101.0, "MAX_PERKM": 101.0, "MIN_PERMI": 63.0, "MAX_PERMI": 63.0, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 345604.0, "ELEVATION": null, "GTOPO30": 339.0, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9086639898550785}, "geometry": {"type": "Point", "coordinates": [71.427774, 51.181125]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "NOTE": null, "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944.0, "MEGANAME": null, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927.0, "MAX_POP20": 471927.0, "MAX_POP50": 570348.0, "MAX_POP300": 570348.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 166.0, "MAX_AREAKM": 243.0, "MIN_AREAMI": 64.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 170.0, "MAX_PERKM": 283.0, "MIN_PERMI": 106.0, "MAX_PERMI": 176.0, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27.0, "GN_POP": 196731.0, "ELEVATION": null, "GTOPO30": 174.0, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.7798759681661608}, "geometry": {"type": "Point", "coordinates": [102.59998, 17.966692]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "NOTE": null, "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535.0, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890.0, "MAX_POP20": 1163890.0, "MAX_POP50": 1163890.0, "MAX_POP300": 1163890.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 148.0, "MAX_AREAKM": 148.0, "MIN_AREAMI": 57.0, "MAX_AREAMI": 57.0, "MIN_PERKM": 105.0, "MAX_PERKM": 105.0, "MIN_PERMI": 65.0, "MAX_PERMI": 65.0, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 1284609.0, "ELEVATION": null, "GTOPO30": 156.0, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83.0, "POP1955": 92.0, "POP1960": 124.0, "POP1965": 172.0, "POP1970": 238.0, "POP1975": 329.0, "POP1980": 446.0, "POP1985": 596.0, "POP1990": 704.0, "POP1995": 830.0, "POP2000": 986.0, "POP2005": 1216.0, "POP2010": 1355.0, "POP2015": 1505.0, "POP2020": 1729.0, "POP2025": 1938.0, "POP2050": 2150.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.282743, -4.257239]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "NOTE": null, "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465.0, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217.0, "MAX_POP20": 1504217.0, "MAX_POP50": 1504217.0, "MAX_POP300": 1504217.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 184.0, "MAX_AREAKM": 184.0, "MIN_AREAMI": 71.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 123.0, "MAX_PERKM": 123.0, "MIN_PERMI": 76.0, "MAX_PERMI": 76.0, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 1767200.0, "ELEVATION": null, "GTOPO30": 235.0, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31.0, "POP1955": 59.0, "POP1960": 112.0, "POP1965": 208.0, "POP1970": 388.0, "POP1975": 530.0, "POP1980": 658.0, "POP1985": 766.0, "POP1990": 895.0, "POP1995": 1045.0, "POP2000": 1219.0, "POP2005": 1409.0, "POP2010": 1494.0, "POP2015": 1645.0, "POP2020": 1984.0, "POP2025": 2393.0, "POP2050": 2856.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-13.68218, 9.533468]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1.0, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "NOTE": null, "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755.0, "MEGANAME": null, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499.0, "MAX_POP20": 206499.0, "MAX_POP50": 206499.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 59.0, "MAX_AREAKM": 59.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 52.0, "MAX_PERKM": 52.0, "MIN_PERMI": 32.0, "MAX_PERMI": 32.0, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81.0, "GN_POP": 194530.0, "ELEVATION": null, "GTOPO30": 219.0, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.47300906120050235}, "geometry": {"type": "Point", "coordinates": [-5.275502, 6.81838]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEPAR": null, "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817.0, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780.0, "MAX_POP20": 885780.0, "MAX_POP50": 885780.0, "MAX_POP300": 885780.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 504.0, "MAX_AREAKM": 504.0, "MIN_AREAMI": 195.0, "MAX_AREAMI": 195.0, "MIN_PERKM": 442.0, "MAX_PERKM": 442.0, "MIN_PERMI": 274.0, "MAX_PERMI": 274.0, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 812129.0, "ELEVATION": null, "GTOPO30": 61.0, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282.0, "POP1955": 342.0, "POP1960": 415.0, "POP1965": 482.0, "POP1970": 581.0, "POP1975": 676.0, "POP1980": 729.0, "POP1985": 803.0, "POP1990": 918.0, "POP1995": 988.0, "POP2000": 1079.0, "POP2005": 1119.0, "POP2010": 1145.0, "POP2015": 1182.0, "POP2020": 1232.0, "POP2025": 1274.0, "POP2050": 1315.0, "CITYALT": "Ottawa", "clustered:unrelated": 0.3627839742211745}, "geometry": {"type": "Point", "coordinates": [-75.701961, 45.418642]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "NOTE": null, "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680.0, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613.0, "MAX_POP20": 1291613.0, "MAX_POP50": 1291613.0, "MAX_POP300": 1291613.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 209.0, "MAX_AREAKM": 209.0, "MIN_AREAMI": 81.0, "MAX_AREAMI": 81.0, "MIN_PERKM": 184.0, "MAX_PERKM": 184.0, "MIN_PERMI": 114.0, "MAX_PERMI": 114.0, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1273651.0, "ELEVATION": null, "GTOPO30": 90.0, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411.0, "POP1955": 501.0, "POP1960": 576.0, "POP1965": 649.0, "POP1970": 729.0, "POP1975": 873.0, "POP1980": 1057.0, "POP1985": 1121.0, "POP1990": 1162.0, "POP1995": 1149.0, "POP2000": 1127.0, "POP2005": 1106.0, "POP2010": 1099.0, "POP2015": 1096.0, "POP2020": 1108.0, "POP2025": 1132.0, "POP2050": 1163.0, "CITYALT": "Belgrade", "clustered:unrelated": 0.05764985684359614}, "geometry": {"type": "Point", "coordinates": [20.466044, 44.820591]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "NOTE": null, "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906.0, "MEGANAME": null, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674.0, "MAX_POP20": 219674.0, "MAX_POP50": 219674.0, "MAX_POP300": 219674.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 145.0, "MAX_AREAKM": 145.0, "MIN_AREAMI": 56.0, "MAX_AREAMI": 56.0, "MIN_PERKM": 155.0, "MAX_PERKM": 155.0, "MIN_PERMI": 96.0, "MAX_PERMI": 96.0, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 64409.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9058855585384573}, "geometry": {"type": "Point", "coordinates": [114.933284, 4.883331]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official (const", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "NOTE": null, "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987.0, "MEGANAME": null, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736.0, "MAX_POP20": 221736.0, "MAX_POP50": 221736.0, "MAX_POP300": 221736.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 34.0, "MAX_AREAKM": 34.0, "MIN_AREAMI": 13.0, "MAX_AREAMI": 13.0, "MIN_PERKM": 32.0, "MAX_PERKM": 32.0, "MIN_PERMI": 20.0, "MAX_PERMI": 20.0, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 224838.0, "ELEVATION": null, "GTOPO30": 2759.0, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.14649540424089302}, "geometry": {"type": "Point", "coordinates": [-65.259515, -19.04097]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "NOTE": null, "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672.0, "MEGANAME": null, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220.0, "MAX_POP20": 15220.0, "MAX_POP50": 15220.0, "MAX_POP300": 15220.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 9.0, "MAX_AREAKM": 9.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 13381.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.46083371088339664}, "geometry": {"type": "Point", "coordinates": [-88.767072, 17.252033]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "NOTE": null, "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853.0, "MEGANAME": null, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886.0, "MAX_POP20": 792886.0, "MAX_POP50": 831925.0, "MAX_POP300": 831925.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 90.0, "MAX_AREAKM": 103.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 91.0, "MAX_PERKM": 107.0, "MIN_PERMI": 57.0, "MAX_PERMI": 67.0, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 542393.0, "ELEVATION": null, "GTOPO30": 373.0, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.537638595860987}, "geometry": {"type": "Point", "coordinates": [18.558288, 4.366644]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEPAR": null, "NAMEALT": "Yaound\u00e9", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "NOTE": null, "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957.0, "MEGANAME": "Yaound\u00e9", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587.0, "MAX_POP20": 1060587.0, "MAX_POP50": 1060587.0, "MAX_POP300": 1060587.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 197.0, "MAX_AREAKM": 197.0, "MIN_AREAMI": 76.0, "MAX_AREAMI": 76.0, "MIN_PERKM": 116.0, "MAX_PERKM": 116.0, "MIN_PERMI": 72.0, "MAX_PERMI": 72.0, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1299369.0, "ELEVATION": null, "GTOPO30": 733.0, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32.0, "POP1955": 49.0, "POP1960": 75.0, "POP1965": 112.0, "POP1970": 183.0, "POP1975": 292.0, "POP1980": 415.0, "POP1985": 578.0, "POP1990": 754.0, "POP1995": 948.0, "POP2000": 1192.0, "POP2005": 1489.0, "POP2010": 1611.0, "POP2015": 1787.0, "POP2020": 2058.0, "POP2025": 2312.0, "POP2050": 2549.0, "CITYALT": "Yaounde", "clustered:unrelated": 0.338663465619539}, "geometry": {"type": "Point", "coordinates": [11.514704, 3.868646]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durr\u00ebs", "ISO_A2": "AL", "NOTE": null, "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875.0, "MEGANAME": null, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241.0, "MAX_POP20": 530241.0, "MAX_POP50": 530241.0, "MAX_POP300": 530241.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 74.0, "MAX_AREAKM": 74.0, "MIN_AREAMI": 28.0, "MAX_AREAMI": 28.0, "MIN_PERKM": 80.0, "MAX_PERKM": 80.0, "MIN_PERMI": 50.0, "MAX_PERMI": 50.0, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50.0, "GN_POP": 374801.0, "ELEVATION": null, "GTOPO30": 103.0, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [19.818883, 41.32754]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "NOTE": null, "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052.0, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842.0, "MAX_POP20": 1200842.0, "MAX_POP50": 1200842.0, "MAX_POP300": 1200842.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 191.0, "MAX_AREAKM": 191.0, "MIN_AREAMI": 74.0, "MAX_AREAMI": 74.0, "MIN_PERKM": 166.0, "MAX_PERKM": 166.0, "MIN_PERMI": 103.0, "MAX_PERMI": 103.0, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1093485.0, "ELEVATION": null, "GTOPO30": 1002.0, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341.0, "POP1955": 431.0, "POP1960": 538.0, "POP1965": 648.0, "POP1970": 778.0, "POP1975": 911.0, "POP1980": 1042.0, "POP1985": 1123.0, "POP1990": 1175.0, "POP1995": 1142.0, "POP2000": 1111.0, "POP2005": 1103.0, "POP2010": 1102.0, "POP2015": 1102.0, "POP2020": 1102.0, "POP2025": 1102.0, "POP2050": 1102.0, "CITYALT": null, "clustered:unrelated": 0.15540886158997858}, "geometry": {"type": "Point", "coordinates": [44.511605, 40.183096]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "NOTE": null, "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084.0, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087.0, "MAX_POP20": 1581475.0, "MAX_POP50": 1581475.0, "MAX_POP300": 1581475.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 246.0, "MAX_AREAKM": 249.0, "MIN_AREAMI": 95.0, "MAX_AREAMI": 96.0, "MIN_PERKM": 174.0, "MAX_PERKM": 179.0, "MIN_PERMI": 108.0, "MAX_PERMI": 111.0, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1116513.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897.0, "POP1955": 940.0, "POP1960": 1005.0, "POP1965": 1132.0, "POP1970": 1274.0, "POP1975": 1429.0, "POP1980": 1574.0, "POP1985": 1660.0, "POP1990": 1733.0, "POP1995": 1766.0, "POP2000": 1806.0, "POP2005": 1867.0, "POP2010": 1892.0, "POP2015": 1931.0, "POP2020": 2006.0, "POP2025": 2097.0, "POP2050": 2187.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [49.860271, 40.397217]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEPAR": null, "NAMEALT": "Phnum P\u00e9nh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "NOTE": null, "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306.0, "MEGANAME": "Phnum P\u00e9nh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977.0, "MAX_POP20": 1551977.0, "MAX_POP50": 1551977.0, "MAX_POP300": 1551977.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 464.0, "MAX_AREAKM": 464.0, "MIN_AREAMI": 179.0, "MAX_AREAMI": 179.0, "MIN_PERKM": 703.0, "MAX_PERKM": 703.0, "MIN_PERMI": 437.0, "MAX_PERMI": 437.0, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105.0, "MAX_BBXMAX": 105.0, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1573544.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364.0, "POP1955": 376.0, "POP1960": 389.0, "POP1965": 436.0, "POP1970": 900.0, "POP1975": 100.0, "POP1980": 238.0, "POP1985": 427.0, "POP1990": 615.0, "POP1995": 836.0, "POP2000": 1160.0, "POP2005": 1363.0, "POP2010": 1466.0, "POP2015": 1651.0, "POP2020": 2028.0, "POP2025": 2457.0, "POP2050": 2911.0, "CITYALT": "Phnom Penh"}, "geometry": {"type": "Point", "coordinates": [104.914688, 11.551975]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "NOTE": null, "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925.0, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482.0, "MAX_POP20": 1590482.0, "MAX_POP50": 1590482.0, "MAX_POP300": 1590482.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 181.0, "MAX_AREAKM": 181.0, "MIN_AREAMI": 70.0, "MAX_AREAMI": 70.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 812799.0, "ELEVATION": null, "GTOPO30": 3829.0, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319.0, "POP1955": 374.0, "POP1960": 438.0, "POP1965": 512.0, "POP1970": 600.0, "POP1975": 703.0, "POP1980": 809.0, "POP1985": 927.0, "POP1990": 1062.0, "POP1995": 1267.0, "POP2000": 1390.0, "POP2005": 1527.0, "POP2010": 1590.0, "POP2015": 1692.0, "POP2020": 1864.0, "POP2025": 2027.0, "POP2050": 2178.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-68.151931, -16.496027]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ou\u00e9m\u00e9", "ISO_A2": "BJ", "NOTE": null, "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819.0, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928.0, "MAX_POP20": 1076471.0, "MAX_POP50": 1076471.0, "MAX_POP300": 1113489.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 192.0, "MAX_AREAKM": 337.0, "MIN_AREAMI": 74.0, "MAX_AREAMI": 130.0, "MIN_PERKM": 177.0, "MAX_PERKM": 341.0, "MIN_PERMI": 110.0, "MAX_PERMI": 212.0, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14.0, "GN_POP": 690584.0, "ELEVATION": null, "GTOPO30": 53.0, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20.0, "POP1955": 27.0, "POP1960": 73.0, "POP1965": 111.0, "POP1970": 163.0, "POP1975": 240.0, "POP1980": 337.0, "POP1985": 412.0, "POP1990": 504.0, "POP1995": 577.0, "POP2000": 642.0, "POP2005": 720.0, "POP2010": 762.0, "POP2015": 841.0, "POP2020": 1004.0, "POP2025": 1196.0, "POP2050": 1411.0, "CITYALT": null, "clustered:unrelated": 0.5916508907218972}, "geometry": {"type": "Point", "coordinates": [2.518044, 6.401954]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "NOTE": null, "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011.0, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827.0, "MAX_POP20": 874827.0, "MAX_POP50": 874827.0, "MAX_POP300": 874827.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 217.0, "MAX_AREAKM": 217.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 84.0, "MIN_PERKM": 174.0, "MAX_PERKM": 174.0, "MIN_PERMI": 108.0, "MAX_PERMI": 108.0, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42.0, "GN_POP": 1152556.0, "ELEVATION": null, "GTOPO30": 558.0, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522.0, "POP1955": 616.0, "POP1960": 708.0, "POP1965": 806.0, "POP1970": 888.0, "POP1975": 977.0, "POP1980": 1074.0, "POP1985": 1181.0, "POP1990": 1191.0, "POP1995": 1168.0, "POP2000": 1128.0, "POP2005": 1166.0, "POP2010": 1185.0, "POP2015": 1212.0, "POP2020": 1233.0, "POP2025": 1236.0, "POP2050": 1236.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [23.314708, 42.685295]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "NOTE": null, "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144.0, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138.0, "MAX_POP20": 1577138.0, "MAX_POP50": 1577138.0, "MAX_POP300": 1577138.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 211.0, "MAX_AREAKM": 211.0, "MIN_AREAMI": 82.0, "MAX_AREAMI": 82.0, "MIN_PERKM": 196.0, "MAX_PERKM": 196.0, "MIN_PERMI": 122.0, "MAX_PERMI": 122.0, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1742124.0, "ELEVATION": null, "GTOPO30": 199.0, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284.0, "POP1955": 414.0, "POP1960": 551.0, "POP1965": 719.0, "POP1970": 932.0, "POP1975": 1120.0, "POP1980": 1318.0, "POP1985": 1474.0, "POP1990": 1607.0, "POP1995": 1649.0, "POP2000": 1700.0, "POP2005": 1775.0, "POP2010": 1805.0, "POP2015": 1846.0, "POP2020": 1879.0, "POP2025": 1883.0, "POP2050": 1883.0, "CITYALT": null, "clustered:unrelated": 0.31017571790239495}, "geometry": {"type": "Point", "coordinates": [27.564681, 53.901923]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "NOTE": null, "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416.0, "MEGANAME": null, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538.0, "MAX_POP20": 274538.0, "MAX_POP50": 275382.0, "MAX_POP300": 275382.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 38.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 65.0, "MAX_PERKM": 68.0, "MIN_PERMI": 40.0, "MAX_PERMI": 42.0, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 98676.0, "ELEVATION": 2320.0, "GTOPO30": 2737.0, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [89.639014, 27.472985]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "NOTE": null, "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773.0, "MEGANAME": null, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243.0, "MAX_POP20": 159243.0, "MAX_POP50": 159243.0, "MAX_POP300": 159243.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 72.0, "MAX_AREAKM": 72.0, "MIN_AREAMI": 28.0, "MAX_AREAMI": 28.0, "MIN_PERKM": 59.0, "MAX_PERKM": 59.0, "MIN_PERMI": 37.0, "MAX_PERMI": 37.0, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 208411.0, "ELEVATION": null, "GTOPO30": 1006.0, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5188528922848672}, "geometry": {"type": "Point", "coordinates": [25.911947, -24.646313]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517.0, "MEGANAME": null, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032.0, "MAX_POP20": 244896.0, "MAX_POP50": 244896.0, "MAX_POP300": 244896.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 226.0, "MAX_AREAKM": 251.0, "MIN_AREAMI": 87.0, "MAX_AREAMI": 97.0, "MIN_PERKM": 175.0, "MAX_PERKM": 202.0, "MIN_PERMI": 109.0, "MAX_PERMI": 126.0, "MIN_BBXMIN": 149.0, "MAX_BBXMIN": 149.0, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 327700.0, "ELEVATION": null, "GTOPO30": 609.0, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5086808177811907}, "geometry": {"type": "Point", "coordinates": [149.129026, -35.283028]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "NOTE": null, "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048.0, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457.0, "MAX_POP20": 835457.0, "MAX_POP50": 835457.0, "MAX_POP300": 835457.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 236.0, "MAX_AREAKM": 236.0, "MIN_AREAMI": 91.0, "MAX_AREAMI": 91.0, "MIN_PERKM": 133.0, "MAX_PERKM": 133.0, "MIN_PERMI": 83.0, "MAX_PERMI": 83.0, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53.0, "GN_POP": 1086505.0, "ELEVATION": null, "GTOPO30": 307.0, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33.0, "POP1955": 46.0, "POP1960": 59.0, "POP1965": 82.0, "POP1970": 111.0, "POP1975": 149.0, "POP1980": 257.0, "POP1985": 424.0, "POP1990": 537.0, "POP1995": 667.0, "POP2000": 828.0, "POP2005": 1044.0, "POP2010": 1149.0, "POP2015": 1324.0, "POP2020": 1676.0, "POP2025": 2111.0, "POP2050": 2632.0, "CITYALT": null, "clustered:unrelated": 0.2733558486312637}, "geometry": {"type": "Point", "coordinates": [-1.526669, 12.372261]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "NOTE": null, "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281.0, "MEGANAME": null, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902.0, "MAX_POP20": 628902.0, "MAX_POP50": 628902.0, "MAX_POP300": 628902.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 112.0, "MAX_PERKM": 112.0, "MIN_PERMI": 70.0, "MAX_PERMI": 70.0, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 696731.0, "ELEVATION": null, "GTOPO30": 545.0, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.2678933673892613}, "geometry": {"type": "Point", "coordinates": [18.383001, 43.850022]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEPAR": null, "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "NOTE": null, "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854.0, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824.0, "MAX_POP20": 194824.0, "MAX_POP50": 194824.0, "MAX_POP300": 194824.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 34.0, "MAX_AREAMI": 34.0, "MIN_PERKM": 149.0, "MAX_PERKM": 149.0, "MIN_PERMI": 93.0, "MAX_PERMI": 93.0, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": null, "ELEVATION": null, "GTOPO30": 108.0, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": 57.0, "POP2010": 930.0, "POP2015": 1024.0, "POP2020": 1177.0, "POP2025": 1321.0, "POP2050": 1461.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [96.116672, 19.768502]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ADM1NAME": null, "ISO_A2": "TO", "NOTE": null, "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402.0, "MEGANAME": null, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620.0, "MAX_POP20": 42620.0, "MAX_POP50": 42620.0, "MAX_POP300": 42620.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 15.0, "MAX_AREAKM": 15.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 27.0, "MAX_PERKM": 27.0, "MIN_PERMI": 17.0, "MAX_PERMI": 17.0, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 22400.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-175.220564, -21.138512]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ADM1NAME": null, "ISO_A2": "-99", "NOTE": null, "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289.0, "MEGANAME": null, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018.0, "MAX_POP20": 247018.0, "MAX_POP50": 247018.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 40.0, "MAX_AREAKM": 40.0, "MIN_AREAMI": 15.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 37.0, "MAX_PERKM": 37.0, "MIN_PERMI": 23.0, "MAX_PERMI": 23.0, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20.0, "GN_POP": 477876.0, "ELEVATION": null, "GTOPO30": 1247.0, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [44.06531, 9.560022]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ADM1NAME": null, "ISO_A2": "SC", "NOTE": null, "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131.0, "MEGANAME": null, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576.0, "MAX_POP20": 33576.0, "MAX_POP50": 33576.0, "MAX_POP300": 33576.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 15.0, "MAX_AREAKM": 15.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 26.0, "MAX_PERKM": 26.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 22881.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.7522979971549657}, "geometry": {"type": "Point", "coordinates": [55.449989, -4.616631]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ADM1NAME": null, "ISO_A2": "ST", "NOTE": null, "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092.0, "MEGANAME": null, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219.0, "MAX_POP20": 88219.0, "MAX_POP50": 88219.0, "MAX_POP300": 88219.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 32.0, "MAX_AREAKM": 32.0, "MIN_AREAMI": 12.0, "MAX_AREAMI": 12.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 28.0, "MAX_PERMI": 28.0, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22.0, "GN_POP": 6137.0, "ELEVATION": null, "GTOPO30": 151.0, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [6.733325, 0.333402]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ADM1NAME": null, "ISO_A2": "WS", "NOTE": null, "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793.0, "MEGANAME": null, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916.0, "MAX_POP20": 61916.0, "MAX_POP50": 61916.0, "MAX_POP300": 61916.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 39.0, "MAX_AREAKM": 39.0, "MIN_AREAMI": 15.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 51.0, "MAX_PERKM": 51.0, "MIN_PERMI": 32.0, "MAX_PERMI": 32.0, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24.0, "GN_POP": 6940.0, "ELEVATION": null, "GTOPO30": 1561.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-171.738641, -13.841545]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ADM1NAME": null, "ISO_A2": "MT", "NOTE": null, "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305.0, "MEGANAME": null, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921.0, "MAX_POP20": 336921.0, "MAX_POP50": 336921.0, "MAX_POP300": 336921.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 106.0, "MAX_AREAKM": 106.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 41.0, "MIN_PERKM": 87.0, "MAX_PERKM": 87.0, "MIN_PERMI": 54.0, "MAX_PERMI": 54.0, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 6794.0, "ELEVATION": null, "GTOPO30": 90.0, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [14.51471, 35.899732]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ADM1NAME": null, "ISO_A2": "MV", "NOTE": null, "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186.0, "MEGANAME": null, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927.0, "MAX_POP20": 112927.0, "MAX_POP50": 112927.0, "MAX_POP300": 112927.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3.0, "MAX_AREAKM": 3.0, "MIN_AREAMI": 1.0, "MAX_AREAMI": 1.0, "MIN_PERKM": 7.0, "MAX_PERKM": 7.0, "MIN_PERMI": 5.0, "MAX_PERMI": 5.0, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17.0, "GN_POP": 2138.0, "ELEVATION": null, "GTOPO30": 672.0, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5279082893192222}, "geometry": {"type": "Point", "coordinates": [73.499947, 4.166708]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "NOTE": null, "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184.0, "MEGANAME": null, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782.0, "MAX_POP20": 1073782.0, "MAX_POP50": 1073782.0, "MAX_POP300": 1073782.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 246.0, "MAX_AREAKM": 246.0, "MIN_AREAMI": 95.0, "MAX_AREAMI": 95.0, "MIN_PERKM": 239.0, "MAX_PERKM": 239.0, "MIN_PERMI": 149.0, "MAX_PERMI": 149.0, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6.0, "GN_POP": 714000.0, "ELEVATION": null, "GTOPO30": 795.0, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.206625, 31.778407]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ADM1NAME": null, "ISO_A2": "CV", "NOTE": null, "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333.0, "MEGANAME": null, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859.0, "MAX_POP20": 88859.0, "MAX_POP50": 88859.0, "MAX_POP300": 88859.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 37.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 40.0, "MAX_PERKM": 40.0, "MIN_PERMI": 25.0, "MAX_PERMI": 25.0, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 113364.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-23.516688, 14.916698]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ADM1NAME": null, "ISO_A2": "BS", "NOTE": null, "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824.0, "MEGANAME": null, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966.0, "MAX_POP20": 160966.0, "MAX_POP50": 160966.0, "MAX_POP300": 160966.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 84.0, "MAX_AREAKM": 84.0, "MIN_AREAMI": 32.0, "MAX_AREAMI": 32.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25.0, "MAX_BBYMIN": 25.0, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23.0, "GN_POP": 227940.0, "ELEVATION": null, "GTOPO30": 3.0, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-77.350043, 25.08339]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Capital of both", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ADM1NAME": null, "ISO_A2": "CY", "NOTE": null, "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268.0, "MEGANAME": null, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300.0, "MAX_POP20": 224300.0, "MAX_POP50": 224300.0, "MAX_POP300": 224300.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 128.0, "MAX_AREAKM": 128.0, "MIN_AREAMI": 49.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 109.0, "MAX_PERKM": 109.0, "MIN_PERMI": 68.0, "MAX_PERMI": 68.0, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 200452.0, "ELEVATION": null, "GTOPO30": 128.0, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [33.366634, 35.166676]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEPAR": null, "NAMEALT": "H\u00e0 Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Th\u00e1i Nguy\u00ean", "ISO_A2": "VN", "NOTE": null, "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130.0, "MEGANAME": "H\u00e0 Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806.0, "MAX_POP20": 7346227.0, "MAX_POP50": 16406759.0, "MAX_POP300": 23700631.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2512.0, "MAX_AREAKM": 14049.0, "MIN_AREAMI": 970.0, "MAX_AREAMI": 5424.0, "MIN_PERKM": 1175.0, "MAX_PERKM": 10267.0, "MIN_PERMI": 730.0, "MAX_PERMI": 6380.0, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44.0, "GN_POP": 1431270.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280.0, "POP1955": 425.0, "POP1960": 644.0, "POP1965": 917.0, "POP1970": 1307.0, "POP1975": 1884.0, "POP1980": 2606.0, "POP1985": 2854.0, "POP1990": 3126.0, "POP1995": 3424.0, "POP2000": 3752.0, "POP2005": 4170.0, "POP2010": 4378.0, "POP2015": 4723.0, "POP2020": 5357.0, "POP2025": 6036.0, "POP2050": 6754.0, "CITYALT": "Hanoi"}, "geometry": {"type": "Point", "coordinates": [105.848068, 21.035273]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "NOTE": null, "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786.0, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379.0, "MAX_POP20": 3306823.0, "MAX_POP50": 3306823.0, "MAX_POP300": 3306823.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 531.0, "MAX_AREAKM": 534.0, "MIN_AREAMI": 205.0, "MAX_AREAMI": 206.0, "MIN_PERKM": 355.0, "MAX_PERKM": 365.0, "MIN_PERMI": 221.0, "MAX_PERMI": 227.0, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68.0, "GN_POP": 3517182.0, "ELEVATION": 850.0, "GTOPO30": 889.0, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281.0, "POP1955": 439.0, "POP1960": 635.0, "POP1965": 954.0, "POP1970": 1341.0, "POP1975": 1709.0, "POP1980": 1891.0, "POP1985": 2213.0, "POP1990": 2561.0, "POP1995": 2842.0, "POP2000": 3179.0, "POP2005": 3572.0, "POP2010": 3716.0, "POP2015": 3908.0, "POP2020": 4178.0, "POP2025": 4403.0, "POP2050": 4589.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [32.862445, 39.929184]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "NOTE": null, "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643.0, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020.0, "MAX_POP20": 1788020.0, "MAX_POP50": 1788020.0, "MAX_POP300": 1788020.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 556.0, "MAX_AREAKM": 556.0, "MIN_AREAMI": 215.0, "MAX_AREAMI": 215.0, "MIN_PERKM": 460.0, "MAX_PERKM": 460.0, "MIN_PERMI": 286.0, "MAX_PERMI": 286.0, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1696128.0, "ELEVATION": null, "GTOPO30": 100.0, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618.0, "POP1955": 1714.0, "POP1960": 1811.0, "POP1965": 1878.0, "POP1970": 1946.0, "POP1975": 2005.0, "POP1980": 2057.0, "POP1985": 2036.0, "POP1990": 2005.0, "POP1995": 1893.0, "POP2000": 1787.0, "POP2005": 1693.0, "POP2010": 1679.0, "POP2015": 1664.0, "POP2020": 1655.0, "POP2025": 1655.0, "POP2050": 1655.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [19.081374, 47.501952]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEPAR": null, "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "NOTE": null, "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137.0, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853.0, "MAX_POP20": 1835853.0, "MAX_POP50": 1835853.0, "MAX_POP300": 1835853.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 160.0, "MAX_AREAKM": 160.0, "MIN_AREAMI": 62.0, "MAX_AREAMI": 62.0, "MIN_PERKM": 132.0, "MAX_PERKM": 132.0, "MIN_PERMI": 82.0, "MAX_PERMI": 82.0, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46.0, "POP1955": 58.0, "POP1960": 72.0, "POP1965": 89.0, "POP1970": 111.0, "POP1975": 141.0, "POP1980": 238.0, "POP1985": 402.0, "POP1990": 653.0, "POP1995": 1034.0, "POP2000": 1365.0, "POP2005": 1801.0, "POP2010": 2008.0, "POP2015": 2345.0, "POP2020": 2955.0, "POP2025": 3636.0, "POP2050": 4382.0, "CITYALT": "Sanaa"}, "geometry": {"type": "Point", "coordinates": [44.204647, 15.356679]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "NOTE": null, "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506.0, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194.0, "MAX_POP20": 1742194.0, "MAX_POP50": 1742194.0, "MAX_POP300": 1742194.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 345.0, "MAX_AREAKM": 345.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 133.0, "MIN_PERKM": 357.0, "MAX_PERKM": 357.0, "MIN_PERMI": 222.0, "MAX_PERMI": 222.0, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 1877155.0, "ELEVATION": null, "GTOPO30": 71.0, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652.0, "POP1955": 856.0, "POP1960": 1002.0, "POP1965": 1154.0, "POP1970": 1396.0, "POP1975": 1702.0, "POP1980": 1865.0, "POP1985": 1950.0, "POP1990": 2040.0, "POP1995": 2018.0, "POP2000": 1949.0, "POP2005": 1936.0, "POP2010": 1942.0, "POP2015": 1947.0, "POP2020": 1949.0, "POP2025": 1949.0, "POP2050": 1949.0, "CITYALT": "Bucharest"}, "geometry": {"type": "Point", "coordinates": [26.098, 44.435317]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEPAR": null, "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "NOTE": null, "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654.0, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649.0, "MAX_POP20": 3865606.0, "MAX_POP50": 3865606.0, "MAX_POP300": 3865606.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 532.0, "MAX_AREAKM": 705.0, "MIN_AREAMI": 205.0, "MAX_AREAMI": 272.0, "MIN_PERKM": 608.0, "MAX_PERKM": 768.0, "MIN_PERMI": 378.0, "MAX_PERMI": 477.0, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367.0, "POP1955": 461.0, "POP1960": 579.0, "POP1965": 727.0, "POP1970": 914.0, "POP1975": 1122.0, "POP1980": 1376.0, "POP1985": 1546.0, "POP1990": 1691.0, "POP1995": 1849.0, "POP2000": 2044.0, "POP2005": 2330.0, "POP2010": 2466.0, "POP2015": 2675.0, "POP2020": 2981.0, "POP2025": 3293.0, "POP2050": 3605.0, "CITYALT": "Damascus", "clustered:unrelated": 0.6714069495836904}, "geometry": {"type": "Point", "coordinates": [36.29805, 33.501979]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "NOTE": null, "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057.0, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316.0, "MAX_POP20": 1831921.0, "MAX_POP50": 1831921.0, "MAX_POP300": 1831921.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 506.0, "MAX_AREAKM": 508.0, "MIN_AREAMI": 196.0, "MAX_AREAMI": 196.0, "MIN_PERKM": 355.0, "MAX_PERKM": 360.0, "MIN_PERMI": 221.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 517802.0, "ELEVATION": null, "GTOPO30": 56.0, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304.0, "POP1955": 1405.0, "POP1960": 1514.0, "POP1965": 1657.0, "POP1970": 1817.0, "POP1975": 2103.0, "POP1980": 2449.0, "POP1985": 2518.0, "POP1990": 2537.0, "POP1995": 2600.0, "POP2000": 2672.0, "POP2005": 2762.0, "POP2010": 2812.0, "POP2015": 2890.0, "POP2020": 2996.0, "POP2025": 3058.0, "POP2050": 3086.0, "CITYALT": "Lisbon"}, "geometry": {"type": "Point", "coordinates": [-9.146812, 38.724668]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEPAR": null, "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "NOTE": null, "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252.0, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309.0, "MAX_POP20": 2395309.0, "MAX_POP50": 2395309.0, "MAX_POP300": 4542697.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 348.0, "MAX_AREAKM": 630.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 243.0, "MIN_PERKM": 237.0, "MAX_PERKM": 424.0, "MIN_PERMI": 147.0, "MAX_PERMI": 263.0, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29.0, "GN_POP": 1974647.0, "ELEVATION": null, "GTOPO30": 378.0, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183.0, "POP1955": 252.0, "POP1960": 347.0, "POP1965": 477.0, "POP1970": 657.0, "POP1975": 886.0, "POP1980": 1164.0, "POP1985": 1611.0, "POP1990": 2360.0, "POP1995": 3242.0, "POP2000": 3949.0, "POP2005": 4518.0, "POP2010": 4754.0, "POP2015": 5185.0, "POP2020": 6077.0, "POP2025": 7017.0, "POP2050": 7937.0, "CITYALT": "Khartoum", "clustered:unrelated": 0.08339976996617526}, "geometry": {"type": "Point", "coordinates": [32.532233, 15.590024]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "NOTE": null, "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244.0, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563.0, "MAX_POP20": 731563.0, "MAX_POP50": 762374.0, "MAX_POP300": 762374.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 329.0, "MAX_AREAKM": 362.0, "MIN_AREAMI": 127.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 340.0, "MAX_PERKM": 390.0, "MIN_PERMI": 211.0, "MAX_PERMI": 243.0, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 580000.0, "ELEVATION": null, "GTOPO30": 11.0, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468.0, "POP1955": 533.0, "POP1960": 578.0, "POP1965": 610.0, "POP1970": 643.0, "POP1975": 644.0, "POP1980": 643.0, "POP1985": 662.0, "POP1990": 684.0, "POP1995": 729.0, "POP2000": 774.0, "POP2005": 816.0, "POP2010": 835.0, "POP2015": 858.0, "POP2020": 885.0, "POP2025": 909.0, "POP2050": 936.0, "CITYALT": null, "clustered:unrelated": 0.8057100835357961}, "geometry": {"type": "Point", "coordinates": [10.748033, 59.918636]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "NOTE": null, "LATITUDE": 52.250001, "LONGITUDE": 21.0, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135.0, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163.0, "MAX_POP20": 2129163.0, "MAX_POP50": 2129163.0, "MAX_POP300": 2129163.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 802.0, "MAX_AREAKM": 802.0, "MIN_AREAMI": 310.0, "MAX_AREAMI": 310.0, "MIN_PERKM": 759.0, "MAX_PERKM": 759.0, "MIN_PERMI": 471.0, "MAX_PERMI": 471.0, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78.0, "GN_POP": 1702139.0, "ELEVATION": null, "GTOPO30": 94.0, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768.0, "POP1955": 942.0, "POP1960": 1119.0, "POP1965": 1212.0, "POP1970": 1300.0, "POP1975": 1444.0, "POP1980": 1565.0, "POP1985": 1596.0, "POP1990": 1628.0, "POP1995": 1652.0, "POP2000": 1666.0, "POP2005": 1693.0, "POP2010": 1707.0, "POP2015": 1724.0, "POP2020": 1735.0, "POP2025": 1736.0, "POP2050": 1736.0, "CITYALT": "Warsaw", "clustered:unrelated": 0.8426418369173254}, "geometry": {"type": "Point", "coordinates": [20.998053, 52.251946]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEPAR": null, "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "NOTE": null, "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859.0, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797.0, "MAX_POP20": 2498797.0, "MAX_POP50": 2498797.0, "MAX_POP300": 2498797.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 446.0, "MAX_AREAKM": 447.0, "MIN_AREAMI": 172.0, "MAX_AREAMI": 173.0, "MIN_PERKM": 510.0, "MAX_PERKM": 511.0, "MIN_PERMI": 317.0, "MAX_PERMI": 318.0, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 3222000.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516.0, "POP1955": 577.0, "POP1960": 646.0, "POP1965": 769.0, "POP1970": 987.0, "POP1975": 1348.0, "POP1980": 1842.0, "POP1985": 2195.0, "POP1990": 2526.0, "POP1995": 2838.0, "POP2000": 3117.0, "POP2005": 3265.0, "POP2010": 3300.0, "POP2015": 3346.0, "POP2020": 3434.0, "POP2025": 3537.0, "POP2050": 3630.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [125.752744, 39.021384]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "NOTE": null, "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263.0, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507.0, "MAX_POP20": 2757507.0, "MAX_POP50": 2757507.0, "MAX_POP300": 2757507.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 211.0, "MAX_AREAKM": 211.0, "MIN_AREAMI": 81.0, "MAX_AREAMI": 81.0, "MIN_PERKM": 153.0, "MAX_PERKM": 153.0, "MIN_PERMI": 95.0, "MAX_PERMI": 95.0, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23.0, "GN_POP": 2698652.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67.0, "POP1955": 110.0, "POP1960": 162.0, "POP1965": 233.0, "POP1970": 357.0, "POP1975": 572.0, "POP1980": 836.0, "POP1985": 1046.0, "POP1990": 1316.0, "POP1995": 1668.0, "POP2000": 2116.0, "POP2005": 2679.0, "POP2010": 2930.0, "POP2015": 3319.0, "POP2020": 4020.0, "POP2025": 4804.0, "POP2050": 5688.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [39.266395, -6.798066]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "NOTE": null, "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574.0, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976.0, "MAX_POP20": 968976.0, "MAX_POP50": 968976.0, "MAX_POP300": 968976.0, "MAX_POP310": 968976.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 351.0, "MAX_AREAKM": 351.0, "MIN_AREAMI": 135.0, "MAX_AREAMI": 135.0, "MIN_PERKM": 250.0, "MAX_PERKM": 250.0, "MIN_PERMI": 155.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 1024027.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626.0, "POP1955": 647.0, "POP1960": 661.0, "POP1965": 723.0, "POP1970": 771.0, "POP1975": 833.0, "POP1980": 903.0, "POP1985": 920.0, "POP1990": 916.0, "POP1995": 946.0, "POP2000": 989.0, "POP2005": 1037.0, "POP2010": 1059.0, "POP2015": 1098.0, "POP2020": 1177.0, "POP2025": 1257.0, "POP2050": 1332.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-6.250851, 53.335006]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "NOTE": null, "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895.0, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662.0, "MAX_POP20": 781295.0, "MAX_POP50": 781295.0, "MAX_POP300": 781295.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 152.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 59.0, "MIN_PERKM": 164.0, "MAX_PERKM": 184.0, "MIN_PERMI": 102.0, "MAX_PERMI": 115.0, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 939524.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15.0, "POP1955": 34.0, "POP1960": 75.0, "POP1965": 121.0, "POP1970": 164.0, "POP1975": 226.0, "POP1980": 325.0, "POP1985": 514.0, "POP1990": 1042.0, "POP1995": 464.0, "POP2000": 836.0, "POP2005": 1140.0, "POP2010": 1041.0, "POP2015": 1185.0, "POP2020": 1457.0, "POP2025": 1753.0, "POP2050": 2083.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-10.79966, 6.314581]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official and le", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "NOTE": null, "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161.0, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755.0, "MAX_POP20": 2750755.0, "MAX_POP50": 3468789.0, "MAX_POP300": 4983714.0, "MAX_POP310": 4983714.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 666.0, "MAX_AREAKM": 1700.0, "MIN_AREAMI": 257.0, "MAX_AREAMI": 657.0, "MIN_PERKM": 350.0, "MAX_PERKM": 1111.0, "MIN_PERMI": 217.0, "MAX_PERMI": 690.0, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 1453975.0, "ELEVATION": null, "GTOPO30": 62.0, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208.0, "POP1955": 281.0, "POP1960": 344.0, "POP1965": 394.0, "POP1970": 451.0, "POP1975": 645.0, "POP1980": 921.0, "POP1985": 1016.0, "POP1990": 1120.0, "POP1995": 1213.0, "POP2000": 1306.0, "POP2005": 1405.0, "POP2010": 1448.0, "POP2015": 1519.0, "POP2020": 1670.0, "POP2025": 1820.0, "POP2050": 1938.0, "CITYALT": null, "clustered:unrelated": 0.7679892194503055}, "geometry": {"type": "Point", "coordinates": [101.698037, 3.168611]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEPAR": null, "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "NOTE": null, "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478.0, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917.0, "MAX_POP20": 2051170.0, "MAX_POP50": 2051170.0, "MAX_POP300": 2051170.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 323.0, "MAX_AREAKM": 362.0, "MIN_AREAMI": 125.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 240.0, "MAX_PERKM": 286.0, "MIN_PERMI": 149.0, "MAX_PERMI": 177.0, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 2163824.0, "ELEVATION": null, "GTOPO30": 5.0, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116.0, "POP1955": 1289.0, "POP1960": 1436.0, "POP1965": 1598.0, "POP1970": 1779.0, "POP1975": 1848.0, "POP1980": 1913.0, "POP1985": 2005.0, "POP1990": 2108.0, "POP1995": 2183.0, "POP2000": 2187.0, "POP2005": 2189.0, "POP2010": 2174.0, "POP2015": 2159.0, "POP2020": 2151.0, "POP2025": 2150.0, "POP2050": 2150.0, "CITYALT": "Havana", "clustered:unrelated": 0.45468816190343486}, "geometry": {"type": "Point", "coordinates": [-82.366128, 23.133904]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "NOTE": null, "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393.0, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771.0, "MAX_POP20": 1115771.0, "MAX_POP50": 1115771.0, "MAX_POP300": 1115771.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 317.0, "MAX_AREAKM": 317.0, "MIN_AREAMI": 122.0, "MAX_AREAMI": 122.0, "MIN_PERKM": 249.0, "MAX_PERKM": 249.0, "MIN_PERMI": 155.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 2087.0, "ELEVATION": 308.0, "GTOPO30": 306.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935.0, "POP1955": 967.0, "POP1960": 1001.0, "POP1965": 1038.0, "POP1970": 1076.0, "POP1975": 1126.0, "POP1980": 1179.0, "POP1985": 1197.0, "POP1990": 1212.0, "POP1995": 1194.0, "POP2000": 1172.0, "POP2005": 1164.0, "POP2010": 1162.0, "POP2015": 1160.0, "POP2020": 1159.0, "POP2025": 1159.0, "POP2050": 1159.0, "CITYALT": "Prague", "clustered:unrelated": 0.7448784087504705}, "geometry": {"type": "Point", "coordinates": [14.464033, 50.085282]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEPAR": null, "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "NOTE": null, "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787.0, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952.0, "MAX_POP20": 2142805.0, "MAX_POP50": 2142805.0, "MAX_POP300": 2142805.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 264.0, "MAX_AREAKM": 366.0, "MIN_AREAMI": 102.0, "MAX_AREAMI": 141.0, "MIN_PERKM": 162.0, "MAX_PERKM": 249.0, "MIN_PERMI": 101.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 60064.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63.0, "POP1955": 106.0, "POP1960": 179.0, "POP1965": 303.0, "POP1970": 553.0, "POP1975": 688.0, "POP1980": 891.0, "POP1985": 1122.0, "POP1990": 1392.0, "POP1995": 1190.0, "POP2000": 1499.0, "POP2005": 1888.0, "POP2010": 2063.0, "POP2015": 2305.0, "POP2020": 2592.0, "POP2025": 2790.0, "POP2050": 2956.0, "CITYALT": "Kuwait"}, "geometry": {"type": "Point", "coordinates": [47.976355, 29.371663]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "NOTE": null, "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373.0, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413.0, "MAX_POP20": 3334413.0, "MAX_POP50": 3334413.0, "MAX_POP300": 3334413.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 451.0, "MAX_AREAKM": 451.0, "MIN_AREAMI": 174.0, "MAX_AREAMI": 174.0, "MIN_PERKM": 309.0, "MAX_PERKM": 309.0, "MIN_PERMI": 192.0, "MAX_PERMI": 192.0, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 2873.0, "ELEVATION": null, "GTOPO30": 2004.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219.0, "POP1955": 312.0, "POP1960": 446.0, "POP1965": 613.0, "POP1970": 833.0, "POP1975": 1016.0, "POP1980": 1240.0, "POP1985": 1396.0, "POP1990": 1522.0, "POP1995": 1670.0, "POP2000": 1854.0, "POP2005": 2062.0, "POP2010": 2154.0, "POP2015": 2298.0, "POP2020": 2525.0, "POP2025": 2722.0, "POP2050": 2885.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-69.90203, 18.472018]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "NOTE": null, "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104.0, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119.0, "MAX_POP20": 2941045.0, "MAX_POP50": 2941045.0, "MAX_POP300": 2941045.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 443.0, "MAX_AREAKM": 636.0, "MIN_AREAMI": 171.0, "MAX_AREAMI": 245.0, "MIN_PERKM": 244.0, "MAX_PERKM": 345.0, "MIN_PERMI": 152.0, "MAX_PERMI": 214.0, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1963264.0, "ELEVATION": null, "GTOPO30": 104.0, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177.0, "POP1955": 265.0, "POP1960": 393.0, "POP1965": 499.0, "POP1970": 631.0, "POP1975": 738.0, "POP1980": 863.0, "POP1985": 1013.0, "POP1990": 1197.0, "POP1995": 1415.0, "POP2000": 1674.0, "POP2005": 1984.0, "POP2010": 2121.0, "POP2015": 2332.0, "POP2020": 2688.0, "POP2025": 3041.0, "POP2050": 3382.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-0.218661, 5.55198]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "NOTE": null, "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1.0, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386.0, "MAX_POP20": 1173386.0, "MAX_POP50": 1173386.0, "MAX_POP300": 1173386.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 195.0, "MAX_AREAKM": 195.0, "MIN_AREAMI": 75.0, "MAX_AREAMI": 75.0, "MIN_PERKM": 142.0, "MAX_PERKM": 142.0, "MIN_PERMI": 88.0, "MAX_PERMI": 88.0, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": 9.0, "GN_POP": 229398.0, "ELEVATION": null, "GTOPO30": 31.0, "TIMEZONE": null, "GEONAMESNO": null, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36.0, "POP1950": 106.0, "POP1955": 136.0, "POP1960": 174.0, "POP1965": 235.0, "POP1970": 398.0, "POP1975": 611.0, "POP1980": 797.0, "POP1985": 1056.0, "POP1990": 1500.0, "POP1995": 1678.0, "POP2000": 1877.0, "POP2005": 2098.0, "POP2010": 2189.0, "POP2015": 2322.0, "POP2020": 2532.0, "POP2025": 2713.0, "POP2050": 2855.0, "CITYALT": "Tripoli"}, "geometry": {"type": "Point", "coordinates": [13.180011, 32.8925]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEPAR": null, "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "While Jerulsale", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "NOTE": null, "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394.0, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568.0, "MAX_POP20": 2324568.0, "MAX_POP50": 2324568.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 436.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 168.0, "MIN_PERKM": 386.0, "MAX_PERKM": 386.0, "MIN_PERMI": 240.0, "MAX_PERMI": 240.0, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5.0, "GN_POP": 378358.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418.0, "POP1955": 556.0, "POP1960": 738.0, "POP1965": 882.0, "POP1970": 1029.0, "POP1975": 1206.0, "POP1980": 1416.0, "POP1985": 1681.0, "POP1990": 2026.0, "POP1995": 2442.0, "POP2000": 2752.0, "POP2005": 3012.0, "POP2010": 3112.0, "POP2015": 3256.0, "POP2020": 3453.0, "POP2025": 3600.0, "POP2050": 3726.0, "CITYALT": "Tel Aviv-Jaffa", "clustered:unrelated": 0.8501483241836331}, "geometry": {"type": "Point", "coordinates": [34.768065, 32.081937]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "NOTE": null, "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225.0, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233.0, "MAX_POP20": 852233.0, "MAX_POP50": 852233.0, "MAX_POP300": 852233.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 513.0, "MAX_AREAKM": 513.0, "MIN_AREAMI": 198.0, "MAX_AREAMI": 198.0, "MIN_PERKM": 550.0, "MAX_PERKM": 550.0, "MIN_PERMI": 342.0, "MAX_PERMI": 342.0, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 558457.0, "ELEVATION": null, "GTOPO30": 23.0, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366.0, "POP1955": 405.0, "POP1960": 448.0, "POP1965": 478.0, "POP1970": 507.0, "POP1975": 582.0, "POP1980": 674.0, "POP1985": 724.0, "POP1990": 872.0, "POP1995": 943.0, "POP2000": 1019.0, "POP2005": 1094.0, "POP2010": 1115.0, "POP2015": 1139.0, "POP2020": 1169.0, "POP2025": 1195.0, "POP2050": 1220.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.93218, 60.177509]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "K\u00f8benhavn", "NAMEPAR": "Copenhagen", "NAMEALT": null, "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "NOTE": null, "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425.0, "MEGANAME": "K\u00f8benhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323.0, "MAX_POP20": 1230007.0, "MAX_POP50": 1256924.0, "MAX_POP300": 1256924.0, "MAX_POP310": 1256924.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 438.0, "MAX_AREAKM": 577.0, "MIN_AREAMI": 169.0, "MAX_AREAMI": 223.0, "MIN_PERKM": 348.0, "MAX_PERKM": 542.0, "MIN_PERMI": 216.0, "MAX_PERMI": 337.0, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17.0, "GN_POP": 1153615.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216.0, "POP1955": 1227.0, "POP1960": 1284.0, "POP1965": 1373.0, "POP1970": 1380.0, "POP1975": 1172.0, "POP1980": 1096.0, "POP1985": 1056.0, "POP1990": 1035.0, "POP1995": 1048.0, "POP2000": 1077.0, "POP2005": 1085.0, "POP2010": 1085.0, "POP2015": 1087.0, "POP2020": 1092.0, "POP2025": 1095.0, "POP2050": 1096.0, "CITYALT": "Copenhagen", "clustered:unrelated": 0.8441115108294452}, "geometry": {"type": "Point", "coordinates": [12.561539, 55.68051]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "NOTE": null, "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538.0, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395.0, "MAX_POP20": 3190395.0, "MAX_POP50": 3190395.0, "MAX_POP300": 3190395.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 474.0, "MAX_AREAKM": 474.0, "MIN_AREAMI": 183.0, "MAX_AREAMI": 183.0, "MIN_PERKM": 304.0, "MAX_PERKM": 304.0, "MIN_PERMI": 189.0, "MAX_PERMI": 189.0, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82.0, "GN_POP": 3677115.0, "ELEVATION": null, "GTOPO30": 75.0, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "C\u00f4te d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65.0, "POP1955": 125.0, "POP1960": 192.0, "POP1965": 310.0, "POP1970": 548.0, "POP1975": 966.0, "POP1980": 1384.0, "POP1985": 1716.0, "POP1990": 2102.0, "POP1995": 2535.0, "POP2000": 3032.0, "POP2005": 3564.0, "POP2010": 3802.0, "POP2015": 4175.0, "POP2020": 4810.0, "POP2025": 5432.0, "POP2050": 6031.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-4.041994, 5.321942]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEPAR": null, "NAMEALT": "Bras\u00edlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058.0, "MEGANAME": "Bras\u00edlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722.0, "MAX_POP20": 1836390.0, "MAX_POP50": 1838722.0, "MAX_POP300": 1838722.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 439.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 169.0, "MIN_PERKM": 311.0, "MAX_PERKM": 318.0, "MIN_PERMI": 193.0, "MAX_PERMI": 197.0, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 2207718.0, "ELEVATION": null, "GTOPO30": 1092.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36.0, "POP1955": 70.0, "POP1960": 137.0, "POP1965": 268.0, "POP1970": 525.0, "POP1975": 827.0, "POP1980": 1293.0, "POP1985": 1559.0, "POP1990": 1863.0, "POP1995": 2257.0, "POP2000": 2746.0, "POP2005": 3341.0, "POP2010": 3599.0, "POP2015": 3938.0, "POP2020": 4284.0, "POP2025": 4463.0, "POP2050": 4578.0, "CITYALT": "Brasilia", "clustered:unrelated": 0.38296011551972664}, "geometry": {"type": "Point", "coordinates": [-47.917998, -15.781394]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEPAR": null, "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "NOTE": null, "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866.0, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840.0, "MAX_POP20": 1874437.0, "MAX_POP50": 3576473.0, "MAX_POP300": 3576473.0, "MAX_POP310": 3576473.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 900.0, "MAX_AREAKM": 2344.0, "MIN_AREAMI": 347.0, "MAX_AREAMI": 905.0, "MIN_PERKM": 997.0, "MAX_PERKM": 2982.0, "MIN_PERMI": 620.0, "MAX_PERMI": 1853.0, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5.0, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1019022.0, "ELEVATION": null, "GTOPO30": 48.0, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415.0, "POP1955": 1449.0, "POP1960": 1485.0, "POP1965": 1525.0, "POP1970": 1568.0, "POP1975": 1610.0, "POP1980": 1654.0, "POP1985": 1654.0, "POP1990": 1680.0, "POP1995": 1715.0, "POP2000": 1733.0, "POP2005": 1742.0, "POP2010": 1743.0, "POP2015": 1744.0, "POP2020": 1744.0, "POP2025": 1744.0, "POP2050": 1744.0, "CITYALT": "Brussels"}, "geometry": {"type": "Point", "coordinates": [4.33137, 50.835262]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "NOTE": null, "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241.0, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962.0, "MAX_POP20": 21394172.0, "MAX_POP50": 53845691.0, "MAX_POP300": 78549234.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3528.0, "MAX_AREAKM": 49912.0, "MIN_AREAMI": 1362.0, "MAX_AREAMI": 19271.0, "MIN_PERKM": 1439.0, "MAX_PERKM": 19314.0, "MIN_PERMI": 894.0, "MAX_PERMI": 12001.0, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81.0, "GN_POP": 10356500.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336.0, "POP1955": 409.0, "POP1960": 508.0, "POP1965": 821.0, "POP1970": 1374.0, "POP1975": 2221.0, "POP1980": 3266.0, "POP1985": 4660.0, "POP1990": 6621.0, "POP1995": 8332.0, "POP2000": 10285.0, "POP2005": 12576.0, "POP2010": 13485.0, "POP2015": 14796.0, "POP2020": 17015.0, "POP2025": 19422.0, "POP2050": 22015.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [90.406633, 23.725005]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "NOTE": null, "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449.0, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272.0, "MAX_POP20": 1951272.0, "MAX_POP50": 1951272.0, "MAX_POP300": 1951272.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 237.0, "MAX_AREAKM": 237.0, "MIN_AREAMI": 91.0, "MAX_AREAMI": 91.0, "MIN_PERKM": 149.0, "MAX_PERKM": 149.0, "MIN_PERMI": 93.0, "MAX_PERMI": 93.0, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 2776168.0, "ELEVATION": null, "GTOPO30": 6.0, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138.0, "POP1955": 174.0, "POP1960": 219.0, "POP1965": 315.0, "POP1970": 459.0, "POP1975": 665.0, "POP1980": 962.0, "POP1985": 1295.0, "POP1990": 1568.0, "POP1995": 1953.0, "POP2000": 2591.0, "POP2005": 3533.0, "POP2010": 4000.0, "POP2015": 4775.0, "POP2020": 6036.0, "POP2025": 7153.0, "POP2050": 8236.0, "CITYALT": null, "clustered:unrelated": 0.5051873052292913}, "geometry": {"type": "Point", "coordinates": [13.232481, -8.83634]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEPAR": null, "NAMEALT": "El Djaza\u00efr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "NOTE": null, "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480.0, "MEGANAME": "El Djaza\u00efr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320.0, "MAX_POP20": 3698473.0, "MAX_POP50": 4203253.0, "MAX_POP300": 4203253.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 886.0, "MAX_AREAKM": 1275.0, "MIN_AREAMI": 342.0, "MAX_AREAMI": 492.0, "MIN_PERKM": 798.0, "MAX_PERKM": 1192.0, "MIN_PERMI": 496.0, "MAX_PERMI": 741.0, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1977663.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516.0, "POP1955": 623.0, "POP1960": 872.0, "POP1965": 1049.0, "POP1970": 1254.0, "POP1975": 1499.0, "POP1980": 1621.0, "POP1985": 1672.0, "POP1990": 1908.0, "POP1995": 2295.0, "POP2000": 2754.0, "POP2005": 3199.0, "POP2010": 3354.0, "POP2015": 3574.0, "POP2020": 3922.0, "POP2025": 4235.0, "POP2050": 4499.0, "CITYALT": "Algiers"}, "geometry": {"type": "Point", "coordinates": [3.048606, 36.76501]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEPAR": null, "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": null, "CAPALT": null, "CAPIN": "Former capital", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "NOTE": null, "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824.0, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820.0, "MAX_POP20": 3301820.0, "MAX_POP50": 3301820.0, "MAX_POP300": 3301820.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 345.0, "MAX_AREAKM": 345.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 133.0, "MIN_PERKM": 199.0, "MAX_PERKM": 199.0, "MIN_PERMI": 123.0, "MAX_PERMI": 123.0, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17.0, "GN_POP": 4477638.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302.0, "POP1955": 1440.0, "POP1960": 1592.0, "POP1965": 1760.0, "POP1970": 1946.0, "POP1975": 2151.0, "POP1980": 2378.0, "POP1985": 2629.0, "POP1990": 2907.0, "POP1995": 3213.0, "POP2000": 3553.0, "POP2005": 3928.0, "POP2010": 4088.0, "POP2015": 4348.0, "POP2020": 4841.0, "POP2025": 5361.0, "POP2050": 5869.0, "CITYALT": "Rangoon"}, "geometry": {"type": "Point", "coordinates": [96.164731, 16.785299]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEPAR": null, "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "NOTE": null, "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959.0, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636.0, "MAX_POP20": 1130999.0, "MAX_POP50": 1371285.0, "MAX_POP300": 4561697.0, "MAX_POP310": 4561697.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 218.0, "MAX_AREAKM": 1748.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 675.0, "MIN_PERKM": 126.0, "MAX_PERKM": 755.0, "MIN_PERMI": 78.0, "MAX_PERMI": 469.0, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 732072.0, "ELEVATION": 16.0, "GTOPO30": 60.0, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855.0, "POP1955": 2021.0, "POP1960": 2200.0, "POP1965": 2361.0, "POP1970": 2529.0, "POP1975": 2590.0, "POP1980": 2656.0, "POP1985": 2805.0, "POP1990": 2961.0, "POP1995": 3095.0, "POP2000": 3236.0, "POP2005": 3387.0, "POP2010": 3450.0, "POP2015": 3544.0, "POP2020": 3684.0, "POP2025": 3803.0, "POP2050": 3898.0, "CITYALT": "San Francisco"}, "geometry": {"type": "Point", "coordinates": [-122.417168, 37.769195]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEPAR": null, "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "NOTE": null, "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384.0, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599.0, "MAX_POP20": 2100407.0, "MAX_POP50": 2174327.0, "MAX_POP300": 2174327.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 909.0, "MAX_AREAKM": 1345.0, "MIN_AREAMI": 351.0, "MAX_AREAMI": 519.0, "MIN_PERKM": 371.0, "MAX_PERKM": 606.0, "MIN_PERMI": 231.0, "MAX_PERMI": 376.0, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505.0, "POP1955": 641.0, "POP1960": 809.0, "POP1965": 923.0, "POP1970": 1054.0, "POP1975": 1198.0, "POP1980": 1356.0, "POP1985": 1437.0, "POP1990": 1528.0, "POP1995": 1747.0, "POP2000": 1998.0, "POP2005": 2241.0, "POP2010": 2313.0, "POP2015": 2396.0, "POP2020": 2502.0, "POP2025": 2590.0, "POP2050": 2661.0, "CITYALT": "Denver", "clustered:unrelated": 0.40483957882568933}, "geometry": {"type": "Point", "coordinates": [-104.985961, 39.741133]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "NOTE": null, "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066.0, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574.0, "MAX_POP20": 4287078.0, "MAX_POP50": 4352341.0, "MAX_POP300": 4352341.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2388.0, "MAX_AREAKM": 3041.0, "MIN_AREAMI": 922.0, "MAX_AREAMI": 1174.0, "MIN_PERKM": 1257.0, "MAX_PERKM": 1773.0, "MIN_PERMI": 781.0, "MAX_PERMI": 1101.0, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95.0, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709.0, "POP1955": 904.0, "POP1960": 1151.0, "POP1965": 1396.0, "POP1970": 1693.0, "POP1975": 2030.0, "POP1980": 2424.0, "POP1985": 2658.0, "POP1990": 2922.0, "POP1995": 3353.0, "POP2000": 3849.0, "POP2005": 4324.0, "POP2010": 4459.0, "POP2015": 4609.0, "POP2020": 4790.0, "POP2025": 4936.0, "POP2050": 5049.0, "CITYALT": null, "clustered:unrelated": 0.14753782862635878}, "geometry": {"type": "Point", "coordinates": [-95.341925, 29.82192]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "NOTE": null, "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138.0, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682.0, "MAX_POP20": 1443206.0, "MAX_POP50": 5187749.0, "MAX_POP300": 5187749.0, "MAX_POP310": 5187749.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 380.0, "MAX_AREAKM": 2907.0, "MIN_AREAMI": 147.0, "MAX_AREAMI": 1122.0, "MIN_PERKM": 156.0, "MAX_PERKM": 999.0, "MIN_PERMI": 97.0, "MAX_PERMI": 620.0, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 382894.0, "ELEVATION": 2.0, "GTOPO30": 2.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622.0, "POP1955": 924.0, "POP1960": 1361.0, "POP1965": 1709.0, "POP1970": 2141.0, "POP1975": 2590.0, "POP1980": 3122.0, "POP1985": 3521.0, "POP1990": 3969.0, "POP1995": 4431.0, "POP2000": 4946.0, "POP2005": 5438.0, "POP2010": 5585.0, "POP2015": 5755.0, "POP2020": 5969.0, "POP2025": 6141.0, "POP2050": 6272.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-80.226051, 25.789556]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "NOTE": null, "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439.0, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128.0, "MAX_POP20": 3896411.0, "MAX_POP50": 3910939.0, "MAX_POP300": 3910939.0, "MAX_POP310": 3910939.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2761.0, "MAX_AREAKM": 4086.0, "MIN_AREAMI": 1066.0, "MAX_AREAMI": 1578.0, "MIN_PERKM": 1494.0, "MAX_PERKM": 2459.0, "MIN_PERMI": 929.0, "MAX_PERMI": 1528.0, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": null, "GN_POP": 422908.0, "ELEVATION": 320.0, "GTOPO30": 305.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513.0, "POP1955": 631.0, "POP1960": 776.0, "POP1965": 959.0, "POP1970": 1182.0, "POP1975": 1386.0, "POP1980": 1625.0, "POP1985": 1879.0, "POP1990": 2184.0, "POP1995": 2781.0, "POP2000": 3542.0, "POP2005": 4307.0, "POP2010": 4506.0, "POP2015": 4695.0, "POP2020": 4888.0, "POP2025": 5035.0, "POP2050": 5151.0, "CITYALT": null, "clustered:unrelated": 0.7967172359016994}, "geometry": {"type": "Point", "coordinates": [-84.401895, 33.831959]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "NOTE": null, "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398.0, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798.0, "MAX_POP20": 5069998.0, "MAX_POP50": 8416660.0, "MAX_POP300": 8416660.0, "MAX_POP310": 8450289.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1345.0, "MAX_AREAKM": 4804.0, "MIN_AREAMI": 519.0, "MAX_AREAMI": 1855.0, "MIN_PERKM": 471.0, "MAX_PERKM": 2946.0, "MIN_PERMI": 293.0, "MAX_PERMI": 1830.0, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 2841952.0, "ELEVATION": 179.0, "GTOPO30": 181.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999.0, "POP1955": 5565.0, "POP1960": 6183.0, "POP1965": 6639.0, "POP1970": 7106.0, "POP1975": 7160.0, "POP1980": 7216.0, "POP1985": 7285.0, "POP1990": 7374.0, "POP1995": 7839.0, "POP2000": 8333.0, "POP2005": 8820.0, "POP2010": 8990.0, "POP2015": 9211.0, "POP2020": 9516.0, "POP2025": 9756.0, "POP2050": 9932.0, "CITYALT": null, "clustered:unrelated": 0.7321529007319287}, "geometry": {"type": "Point", "coordinates": [-87.752, 41.831936]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "NOTE": null, "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738.0, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500.0, "MAX_POP20": 3351058.0, "MAX_POP50": 3351241.0, "MAX_POP300": 3351241.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 224.0, "MAX_AREAKM": 370.0, "MIN_AREAMI": 86.0, "MAX_AREAMI": 143.0, "MIN_PERKM": 137.0, "MAX_PERKM": 278.0, "MIN_PERMI": 85.0, "MAX_PERMI": 172.0, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25.0, "GN_POP": 1815679.0, "ELEVATION": null, "GTOPO30": 920.0, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694.0, "POP1955": 955.0, "POP1960": 1316.0, "POP1965": 1657.0, "POP1970": 2060.0, "POP1975": 2342.0, "POP1980": 2575.0, "POP1985": 2693.0, "POP1990": 2767.0, "POP1995": 2816.0, "POP2000": 2864.0, "POP2005": 2930.0, "POP2010": 2985.0, "POP2015": 3098.0, "POP2020": 3306.0, "POP2025": 3482.0, "POP2050": 3619.0, "CITYALT": null, "clustered:unrelated": 0.11984743635308526}, "geometry": {"type": "Point", "coordinates": [-66.918983, 10.502944]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEPAR": null, "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "NOTE": null, "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448.0, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508.0, "MAX_POP20": 1662508.0, "MAX_POP50": 1662508.0, "MAX_POP300": 1662508.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 217.0, "MAX_AREAKM": 217.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 84.0, "MIN_PERKM": 120.0, "MAX_PERKM": 120.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 2514227.0, "ELEVATION": null, "GTOPO30": 169.0, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815.0, "POP1955": 974.0, "POP1960": 1163.0, "POP1965": 1389.0, "POP1970": 1655.0, "POP1975": 1926.0, "POP1980": 2201.0, "POP1985": 2410.0, "POP1990": 2574.0, "POP1995": 2590.0, "POP2000": 2606.0, "POP2005": 2672.0, "POP2010": 2709.0, "POP2015": 2748.0, "POP2020": 2770.0, "POP2025": 2772.0, "POP2050": 2772.0, "CITYALT": "Kiev", "clustered:unrelated": 0.8957030085960925}, "geometry": {"type": "Point", "coordinates": [30.514682, 50.435313]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "NOTE": null, "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223.0, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251.0, "MAX_POP20": 2244726.0, "MAX_POP50": 2244726.0, "MAX_POP300": 2244726.0, "MAX_POP310": 2244726.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 187.0, "MAX_AREAKM": 407.0, "MIN_AREAMI": 72.0, "MAX_AREAMI": 157.0, "MIN_PERKM": 158.0, "MAX_PERKM": 278.0, "MIN_PERMI": 98.0, "MAX_PERMI": 173.0, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3.0, "GN_POP": 1137347.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20.0, "POP1955": 28.0, "POP1960": 40.0, "POP1965": 51.0, "POP1970": 80.0, "POP1975": 167.0, "POP1980": 254.0, "POP1985": 345.0, "POP1990": 473.0, "POP1995": 650.0, "POP2000": 938.0, "POP2005": 1272.0, "POP2010": 1379.0, "POP2015": 1516.0, "POP2020": 1709.0, "POP2025": 1894.0, "POP2050": 2077.0, "CITYALT": "Dubai"}, "geometry": {"type": "Point", "coordinates": [55.278028, 25.231942]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "NOTE": null, "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569.0, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234.0, "MAX_POP20": 2865890.0, "MAX_POP50": 2865890.0, "MAX_POP300": 2865890.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 639.0, "MAX_AREAKM": 643.0, "MIN_AREAMI": 247.0, "MAX_AREAMI": 248.0, "MIN_PERKM": 377.0, "MAX_PERKM": 383.0, "MIN_PERMI": 234.0, "MAX_PERMI": 238.0, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 1978028.0, "ELEVATION": null, "GTOPO30": 460.0, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755.0, "POP1955": 843.0, "POP1960": 964.0, "POP1965": 1165.0, "POP1970": 1403.0, "POP1975": 1612.0, "POP1980": 1818.0, "POP1985": 1958.0, "POP1990": 2100.0, "POP1995": 2116.0, "POP2000": 2135.0, "POP2005": 2158.0, "POP2010": 2184.0, "POP2015": 2247.0, "POP2020": 2416.0, "POP2025": 2636.0, "POP2050": 2892.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [69.292986, 41.313647]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "NOTE": null, "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707.0, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139.0, "MAX_POP20": 3767139.0, "MAX_POP50": 3767139.0, "MAX_POP300": 3767139.0, "MAX_POP310": 3767139.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 690.0, "MAX_AREAKM": 690.0, "MIN_AREAMI": 266.0, "MAX_AREAMI": 266.0, "MIN_PERKM": 558.0, "MAX_PERKM": 558.0, "MIN_PERMI": 347.0, "MAX_PERMI": 347.0, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33.0, "GN_POP": 50437.0, "ELEVATION": null, "GTOPO30": 2400.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700.0, "POP1955": 2018.0, "POP1960": 2392.0, "POP1965": 2898.0, "POP1970": 3521.0, "POP1975": 3890.0, "POP1980": 4253.0, "POP1985": 4355.0, "POP1990": 4414.0, "POP1995": 4701.0, "POP2000": 5045.0, "POP2005": 5414.0, "POP2010": 5567.0, "POP2015": 5764.0, "POP2020": 5918.0, "POP2025": 5934.0, "POP2050": 5935.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-3.685297, 40.401972]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Gen\u00e8ve", "ISO_A2": "CH", "NOTE": null, "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646.0, "MEGANAME": null, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422.0, "MAX_POP20": 530422.0, "MAX_POP50": 530422.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 179.0, "MAX_AREAKM": 179.0, "MIN_AREAMI": 69.0, "MAX_AREAMI": 69.0, "MIN_PERKM": 215.0, "MAX_PERKM": 215.0, "MIN_PERMI": 134.0, "MAX_PERMI": 134.0, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": null, "GN_POP": 183981.0, "ELEVATION": null, "GTOPO30": 375.0, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.981928064727675}, "geometry": {"type": "Point", "coordinates": [6.140028, 46.210007]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "NOTE": null, "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730.0, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078.0, "MAX_POP20": 1337078.0, "MAX_POP50": 1337078.0, "MAX_POP300": 1337078.0, "MAX_POP310": 1337078.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 694.0, "MAX_AREAKM": 694.0, "MIN_AREAMI": 268.0, "MAX_AREAMI": 268.0, "MIN_PERKM": 629.0, "MAX_PERKM": 629.0, "MIN_PERMI": 391.0, "MAX_PERMI": 391.0, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26.0, "GN_POP": 1253309.0, "ELEVATION": null, "GTOPO30": 20.0, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741.0, "POP1955": 772.0, "POP1960": 805.0, "POP1965": 1003.0, "POP1970": 1035.0, "POP1975": 1015.0, "POP1980": 992.0, "POP1985": 1012.0, "POP1990": 1038.0, "POP1995": 1138.0, "POP2000": 1206.0, "POP2005": 1248.0, "POP2010": 1264.0, "POP2015": 1285.0, "POP2020": 1308.0, "POP2025": 1326.0, "POP2050": 1343.0, "CITYALT": null, "clustered:unrelated": 0.4519973954659141}, "geometry": {"type": "Point", "coordinates": [18.095388, 59.352705]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEPAR": null, "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "NOTE": null, "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350.0, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600.0, "MAX_POP20": 8823534.0, "MAX_POP50": 9210939.0, "MAX_POP300": 9206246.0, "MAX_POP310": 9206246.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 815.0, "MAX_AREAKM": 2350.0, "MIN_AREAMI": 315.0, "MAX_AREAMI": 908.0, "MIN_PERKM": 280.0, "MAX_PERKM": 1354.0, "MIN_PERMI": 174.0, "MAX_PERMI": 841.0, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40.0, "GN_POP": 5104476.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360.0, "POP1955": 1712.0, "POP1960": 2151.0, "POP1965": 2584.0, "POP1970": 3110.0, "POP1975": 3842.0, "POP1980": 4723.0, "POP1985": 5279.0, "POP1990": 5888.0, "POP1995": 6106.0, "POP2000": 6332.0, "POP2005": 6582.0, "POP2010": 6704.0, "POP2015": 6918.0, "POP2020": 7332.0, "POP2025": 7807.0, "POP2050": 8332.0, "CITYALT": "Bangkok", "clustered:unrelated": 0.9833111168476758}, "geometry": {"type": "Point", "coordinates": [100.514698, 13.751945]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "NOTE": null, "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456.0, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234.0, "MAX_POP20": 7092933.0, "MAX_POP50": 7115614.0, "MAX_POP300": 7115806.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 724.0, "MAX_AREAKM": 790.0, "MIN_AREAMI": 279.0, "MAX_AREAMI": 305.0, "MIN_PERKM": 315.0, "MAX_PERKM": 384.0, "MIN_PERMI": 196.0, "MAX_PERMI": 239.0, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15.0, "GN_POP": 7737002.0, "ELEVATION": null, "GTOPO30": 108.0, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066.0, "POP1955": 1368.0, "POP1960": 1756.0, "POP1965": 2284.0, "POP1970": 2980.0, "POP1975": 3696.0, "POP1980": 4438.0, "POP1985": 5116.0, "POP1990": 5837.0, "POP1995": 6537.0, "POP2000": 7116.0, "POP2005": 7747.0, "POP2010": 8012.0, "POP2015": 8375.0, "POP2020": 8857.0, "POP2025": 9251.0, "POP2050": 9600.0, "CITYALT": null, "clustered:unrelated": 0.9204042560921434}, "geometry": {"type": "Point", "coordinates": [-77.052007, -12.046066]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "NOTE": null, "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354.0, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239.0, "MAX_POP20": 2634882.0, "MAX_POP50": 2660614.0, "MAX_POP300": 2660614.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 257.0, "MAX_AREAKM": 302.0, "MIN_AREAMI": 99.0, "MAX_AREAMI": 117.0, "MIN_PERKM": 222.0, "MAX_PERKM": 288.0, "MIN_PERMI": 138.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 2476400.0, "ELEVATION": null, "GTOPO30": 14.0, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211.0, "POP1955": 235.0, "POP1960": 359.0, "POP1965": 473.0, "POP1970": 610.0, "POP1975": 782.0, "POP1980": 957.0, "POP1985": 1162.0, "POP1990": 1405.0, "POP1995": 1688.0, "POP2000": 2029.0, "POP2005": 2434.0, "POP2010": 2604.0, "POP2015": 2856.0, "POP2020": 3275.0, "POP2025": 3726.0, "POP2050": 4225.0, "CITYALT": null, "clustered:unrelated": 0.4258410501668334}, "geometry": {"type": "Point", "coordinates": [-17.475075, 14.717777]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -26.170045, "LONGITUDE": 28.03001, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800.0, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168.0, "MAX_POP20": 5413549.0, "MAX_POP50": 5413549.0, "MAX_POP300": 5413549.0, "MAX_POP310": 5451385.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1124.0, "MAX_AREAKM": 1614.0, "MIN_AREAMI": 434.0, "MAX_AREAMI": 623.0, "MIN_PERKM": 497.0, "MAX_PERKM": 828.0, "MIN_PERMI": 309.0, "MAX_PERMI": 514.0, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6.0, "GN_POP": 2026469.0, "ELEVATION": null, "GTOPO30": 1775.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28.0, "POP1950": 900.0, "POP1955": 1016.0, "POP1960": 1147.0, "POP1965": 1288.0, "POP1970": 1444.0, "POP1975": 1547.0, "POP1980": 1656.0, "POP1985": 1773.0, "POP1990": 1898.0, "POP1995": 2265.0, "POP2000": 2732.0, "POP2005": 3258.0, "POP2010": 3435.0, "POP2015": 3618.0, "POP2020": 3785.0, "POP2025": 3916.0, "POP2050": 4041.0, "CITYALT": null, "clustered:unrelated": 0.6067174231689986}, "geometry": {"type": "Point", "coordinates": [28.028063, -26.168098]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "NOTE": null, "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794.0, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902.0, "MAX_POP20": 1072902.0, "MAX_POP50": 1108173.0, "MAX_POP300": 1108173.0, "MAX_POP310": 1108173.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 275.0, "MAX_AREAKM": 300.0, "MIN_AREAMI": 106.0, "MAX_AREAMI": 116.0, "MIN_PERKM": 293.0, "MAX_PERKM": 343.0, "MIN_PERMI": 182.0, "MAX_PERMI": 213.0, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 741636.0, "ELEVATION": null, "GTOPO30": -2.0, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851.0, "POP1955": 871.0, "POP1960": 895.0, "POP1965": 942.0, "POP1970": 927.0, "POP1975": 978.0, "POP1980": 941.0, "POP1985": 907.0, "POP1990": 936.0, "POP1995": 988.0, "POP2000": 1005.0, "POP2005": 1023.0, "POP2010": 1031.0, "POP2015": 1044.0, "POP2020": 1064.0, "POP2025": 1078.0, "POP2050": 1089.0, "CITYALT": null, "clustered:unrelated": 0.018255858877186504}, "geometry": {"type": "Point", "coordinates": [4.914694, 52.351914]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEPAR": null, "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604.0, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279.0, "MAX_POP20": 3796279.0, "MAX_POP50": 3796279.0, "MAX_POP300": 3796279.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 436.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 168.0, "MIN_PERKM": 261.0, "MAX_PERKM": 261.0, "MIN_PERMI": 162.0, "MAX_PERMI": 162.0, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45.0, "GN_POP": 3144909.0, "ELEVATION": null, "GTOPO30": 17.0, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625.0, "POP1955": 778.0, "POP1960": 967.0, "POP1965": 1206.0, "POP1970": 1505.0, "POP1975": 1793.0, "POP1980": 2109.0, "POP1985": 2406.0, "POP1990": 2682.0, "POP1995": 2951.0, "POP2000": 3043.0, "POP2005": 3138.0, "POP2010": 3181.0, "POP2015": 3267.0, "POP2020": 3475.0, "POP2025": 3716.0, "POP2050": 3949.0, "CITYALT": "Casablanca"}, "geometry": {"type": "Point", "coordinates": [-7.618313, 33.601922]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "NOTE": null, "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848.0, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855.0, "MAX_POP20": 13143622.0, "MAX_POP50": 21387676.0, "MAX_POP300": 21991959.0, "MAX_POP310": 21991959.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 971.0, "MAX_AREAKM": 2718.0, "MIN_AREAMI": 375.0, "MAX_AREAMI": 1049.0, "MIN_PERKM": 546.0, "MAX_PERKM": 1901.0, "MIN_PERMI": 340.0, "MAX_PERMI": 1181.0, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 10349312.0, "ELEVATION": null, "GTOPO30": 46.0, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021.0, "POP1955": 1553.0, "POP1960": 2361.0, "POP1965": 3452.0, "POP1970": 5312.0, "POP1975": 6808.0, "POP1980": 8258.0, "POP1985": 9547.0, "POP1990": 10544.0, "POP1995": 10256.0, "POP2000": 9917.0, "POP2005": 9825.0, "POP2010": 9796.0, "POP2015": 9762.0, "POP2020": 9740.0, "POP2025": 9738.0, "POP2050": 9738.0, "CITYALT": null, "clustered:unrelated": 0.5771516549050235}, "geometry": {"type": "Point", "coordinates": [126.997785, 37.568294]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official, de fa", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "NOTE": null, "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668.0, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575.0, "MAX_POP20": 3077575.0, "MAX_POP50": 3077575.0, "MAX_POP300": 23366503.0, "MAX_POP310": 26749011.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 67.0, "MAX_AREAKM": 8820.0, "MIN_AREAMI": 26.0, "MAX_AREAMI": 3405.0, "MIN_PERKM": 46.0, "MAX_PERKM": 5298.0, "MIN_PERMI": 29.0, "MAX_PERMI": 3292.0, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 10444527.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544.0, "POP1955": 1872.0, "POP1960": 2274.0, "POP1965": 2829.0, "POP1970": 3534.0, "POP1975": 4999.0, "POP1980": 5955.0, "POP1985": 6888.0, "POP1990": 7973.0, "POP1995": 9401.0, "POP2000": 9958.0, "POP2005": 10761.0, "POP2010": 11100.0, "POP2015": 11662.0, "POP2020": 12786.0, "POP2025": 13892.0, "POP2050": 14808.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [120.980271, 14.606104]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Le\u00f3n", "ISO_A2": "MX", "NOTE": null, "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465.0, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184.0, "MAX_POP20": 3296184.0, "MAX_POP50": 3296184.0, "MAX_POP300": 3296184.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 594.0, "MAX_AREAKM": 594.0, "MIN_AREAMI": 229.0, "MAX_AREAMI": 229.0, "MIN_PERKM": 208.0, "MAX_PERKM": 208.0, "MIN_PERMI": 130.0, "MAX_PERMI": 130.0, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19.0, "GN_POP": 1122874.0, "ELEVATION": null, "GTOPO30": 563.0, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356.0, "POP1955": 498.0, "POP1960": 698.0, "POP1965": 943.0, "POP1970": 1267.0, "POP1975": 1589.0, "POP1980": 1992.0, "POP1985": 2273.0, "POP1990": 2594.0, "POP1995": 2961.0, "POP2000": 3266.0, "POP2005": 3579.0, "POP2010": 3712.0, "POP2015": 3901.0, "POP2020": 4140.0, "POP2025": 4298.0, "POP2050": 4413.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-100.33193, 25.67194]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "NOTE": null, "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733.0, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020.0, "MAX_POP20": 354233.0, "MAX_POP50": 350364.0, "MAX_POP300": 638000.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 169.0, "MAX_AREAKM": 399.0, "MIN_AREAMI": 65.0, "MAX_AREAMI": 154.0, "MIN_PERKM": 105.0, "MAX_PERKM": 266.0, "MIN_PERMI": 65.0, "MAX_PERMI": 166.0, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 417910.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319.0, "POP1955": 387.0, "POP1960": 440.0, "POP1965": 532.0, "POP1970": 635.0, "POP1975": 729.0, "POP1980": 774.0, "POP1985": 812.0, "POP1990": 870.0, "POP1995": 976.0, "POP2000": 1063.0, "POP2005": 1189.0, "POP2010": 1245.0, "POP2015": 1321.0, "POP2020": 1398.0, "POP2025": 1441.0, "POP2050": 1475.0, "CITYALT": null, "clustered:unrelated": 0.09318218563663516}, "geometry": {"type": "Point", "coordinates": [174.763034, -36.848067]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "NOTE": null, "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159.0, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014.0, "MAX_POP20": 3093307.0, "MAX_POP50": 3503466.0, "MAX_POP300": 3503466.0, "MAX_POP310": 3503466.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 811.0, "MAX_AREAKM": 1021.0, "MIN_AREAMI": 313.0, "MAX_AREAMI": 394.0, "MIN_PERKM": 482.0, "MAX_PERKM": 709.0, "MIN_PERMI": 300.0, "MAX_PERMI": 441.0, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 3426354.0, "ELEVATION": 74.0, "GTOPO30": 35.0, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352.0, "POP1955": 3299.0, "POP1960": 3260.0, "POP1965": 3232.0, "POP1970": 3206.0, "POP1975": 3130.0, "POP1980": 3056.0, "POP1985": 3060.0, "POP1990": 3422.0, "POP1995": 3471.0, "POP2000": 3384.0, "POP2005": 3391.0, "POP2010": 3406.0, "POP2015": 3423.0, "POP2020": 3434.0, "POP2025": 3436.0, "POP2050": 3436.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [13.399602, 52.523764]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEPAR": null, "NAMEALT": "\u00dcr\u00fcmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102.0, "MEGANAME": "\u00dcr\u00fcmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046.0, "MAX_POP20": 2066046.0, "MAX_POP50": 2066046.0, "MAX_POP300": 2066046.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 361.0, "MAX_AREAKM": 361.0, "MIN_AREAMI": 139.0, "MAX_AREAMI": 139.0, "MIN_PERKM": 318.0, "MAX_PERKM": 318.0, "MIN_PERMI": 198.0, "MAX_PERMI": 198.0, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13.0, "GN_POP": 1508225.0, "ELEVATION": null, "GTOPO30": 915.0, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253.0, "POP1955": 312.0, "POP1960": 384.0, "POP1965": 472.0, "POP1970": 581.0, "POP1975": 715.0, "POP1980": 881.0, "POP1985": 1029.0, "POP1990": 1161.0, "POP1995": 1417.0, "POP2000": 1730.0, "POP2005": 2025.0, "POP2010": 2151.0, "POP2015": 2340.0, "POP2020": 2620.0, "POP2025": 2851.0, "POP2050": 3038.0, "CITYALT": "Urumqi"}, "geometry": {"type": "Point", "coordinates": [87.573059, 43.806958]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286.0, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810.0, "MAX_POP20": 11359674.0, "MAX_POP50": 24374217.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 5912.0, "MAX_AREAKM": 24244.0, "MIN_AREAMI": 2283.0, "MAX_AREAMI": 9361.0, "MIN_PERKM": 2296.0, "MAX_PERKM": 11900.0, "MIN_PERMI": 1427.0, "MAX_PERMI": 7394.0, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32.0, "GN_POP": 3950437.0, "ELEVATION": null, "GTOPO30": 529.0, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768.0, "POP1955": 922.0, "POP1960": 1106.0, "POP1965": 1327.0, "POP1970": 1592.0, "POP1975": 1911.0, "POP1980": 2293.0, "POP1985": 2639.0, "POP1990": 2955.0, "POP1995": 3403.0, "POP2000": 3919.0, "POP2005": 4065.0, "POP2010": 4123.0, "POP2015": 4266.0, "POP2020": 4634.0, "POP2025": 5014.0, "POP2050": 5320.0, "CITYALT": null, "clustered:unrelated": 0.7550443462925647}, "geometry": {"type": "Point", "coordinates": [104.068073, 30.671945]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEPAR": null, "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909.0, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723.0, "MAX_POP20": 10259448.0, "MAX_POP50": 13292739.0, "MAX_POP300": 15645640.0, "MAX_POP310": 15645640.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1561.0, "MAX_AREAKM": 2861.0, "MIN_AREAMI": 603.0, "MAX_AREAMI": 1105.0, "MIN_PERKM": 546.0, "MAX_PERKM": 1202.0, "MIN_PERMI": 339.0, "MAX_PERMI": 747.0, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32.0, "GN_POP": 2592413.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147.0, "POP1955": 5120.0, "POP1960": 6227.0, "POP1965": 7654.0, "POP1970": 9408.0, "POP1975": 9844.0, "POP1980": 9990.0, "POP1985": 10350.0, "POP1990": 11035.0, "POP1995": 11052.0, "POP2000": 11165.0, "POP2005": 11258.0, "POP2010": 11294.0, "POP2015": 11337.0, "POP2020": 11365.0, "POP2025": 11368.0, "POP2050": 11368.0, "CITYALT": "Osaka"}, "geometry": {"type": "Point", "coordinates": [135.458198, 34.751981]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "NOTE": null, "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302.0, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703.0, "MAX_POP20": 5567255.0, "MAX_POP50": 5567255.0, "MAX_POP300": 5567255.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 346.0, "MAX_AREAKM": 357.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 138.0, "MIN_PERKM": 201.0, "MAX_PERKM": 219.0, "MIN_PERMI": 125.0, "MAX_PERMI": 136.0, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 7785965.0, "ELEVATION": null, "GTOPO30": 224.0, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202.0, "POP1955": 292.0, "POP1960": 443.0, "POP1965": 717.0, "POP1970": 1070.0, "POP1975": 1482.0, "POP1980": 2053.0, "POP1985": 2793.0, "POP1990": 3448.0, "POP1995": 4447.0, "POP2000": 5485.0, "POP2005": 7108.0, "POP2010": 7843.0, "POP2015": 9052.0, "POP2020": 11313.0, "POP2025": 13875.0, "POP2050": 16762.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.313026, -4.327778]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481.0, "MEGANAME": null, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047.0, "MAX_POP20": 13414375.0, "MAX_POP50": 32426336.0, "MAX_POP300": 32424761.0, "MAX_POP310": 224908923.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 864.0, "MAX_AREAKM": 186559.0, "MIN_AREAMI": 334.0, "MAX_AREAMI": 72030.0, "MIN_PERKM": 244.0, "MAX_PERKM": 130296.0, "MIN_PERMI": 152.0, "MAX_PERMI": 80962.0, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24.0, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.272945, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 317797.0, "ELEVATION": null, "GTOPO30": 205.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [77.19998, 28.600023]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEPAR": null, "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333.0, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096.0, "MAX_POP20": 8181096.0, "MAX_POP50": 8553953.0, "MAX_POP300": 8553953.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2443.0, "MAX_AREAKM": 2836.0, "MIN_AREAMI": 943.0, "MAX_AREAMI": 1095.0, "MIN_PERKM": 1908.0, "MAX_PERKM": 2412.0, "MIN_PERMI": 1186.0, "MAX_PERMI": 1499.0, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19.0, "GN_POP": 5104047.0, "ELEVATION": 920.0, "GTOPO30": 914.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746.0, "POP1955": 939.0, "POP1960": 1166.0, "POP1965": 1377.0, "POP1970": 1615.0, "POP1975": 2111.0, "POP1980": 2812.0, "POP1985": 3395.0, "POP1990": 4036.0, "POP1995": 4744.0, "POP2000": 5567.0, "POP2005": 6465.0, "POP2010": 6787.0, "POP2015": 7229.0, "POP2020": 7967.0, "POP2025": 8795.0, "POP2050": 9719.0, "CITYALT": null, "clustered:unrelated": 0.635061073570494}, "geometry": {"type": "Point", "coordinates": [77.558063, 12.97194]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Ath\u00ednai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "NOTE": null, "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371.0, "MEGANAME": "Ath\u00ednai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834.0, "MAX_POP20": 3010089.0, "MAX_POP50": 3010089.0, "MAX_POP300": 3010089.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 340.0, "MAX_AREAKM": 509.0, "MIN_AREAMI": 131.0, "MAX_AREAMI": 196.0, "MIN_PERKM": 199.0, "MAX_PERKM": 296.0, "MIN_PERMI": 124.0, "MAX_PERMI": 184.0, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 729137.0, "ELEVATION": 70.0, "GTOPO30": 110.0, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347.0, "POP1955": 1563.0, "POP1960": 1814.0, "POP1965": 2121.0, "POP1970": 2485.0, "POP1975": 2738.0, "POP1980": 2987.0, "POP1985": 3047.0, "POP1990": 3070.0, "POP1995": 3122.0, "POP2000": 3179.0, "POP2005": 3230.0, "POP2010": 3242.0, "POP2015": 3256.0, "POP2020": 3278.0, "POP2025": 3300.0, "POP2050": 3326.0, "CITYALT": "Athens", "clustered:unrelated": 0.6512125479170522}, "geometry": {"type": "Point", "coordinates": [23.731375, 37.985272]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "NOTE": null, "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182.0, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025.0, "MAX_POP20": 5298025.0, "MAX_POP50": 5298025.0, "MAX_POP300": 5298025.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 587.0, "MAX_AREAKM": 587.0, "MIN_AREAMI": 227.0, "MAX_AREAMI": 227.0, "MIN_PERKM": 365.0, "MAX_PERKM": 365.0, "MIN_PERMI": 227.0, "MAX_PERMI": 227.0, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 5672513.0, "ELEVATION": null, "GTOPO30": 41.0, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579.0, "POP1955": 719.0, "POP1960": 1019.0, "POP1965": 1614.0, "POP1970": 2070.0, "POP1975": 2620.0, "POP1980": 3145.0, "POP1985": 3607.0, "POP1990": 4092.0, "POP1995": 4598.0, "POP2000": 5200.0, "POP2005": 5327.0, "POP2010": 5054.0, "POP2015": 5891.0, "POP2020": 6618.0, "POP2025": 7345.0, "POP2050": 8060.0, "CITYALT": null, "clustered:unrelated": 0.20045103340183945}, "geometry": {"type": "Point", "coordinates": [44.391922, 33.340594]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "NOTE": null, "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979.0, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087.0, "MAX_POP20": 3176486.0, "MAX_POP50": 3491912.0, "MAX_POP300": 3450173.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 462.0, "MAX_AREAKM": 1182.0, "MIN_AREAMI": 178.0, "MAX_AREAMI": 457.0, "MIN_PERKM": 397.0, "MAX_PERKM": 1325.0, "MIN_PERMI": 247.0, "MAX_PERMI": 823.0, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44.0, "GN_POP": 2757729.0, "ELEVATION": null, "GTOPO30": 2363.0, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392.0, "POP1955": 451.0, "POP1960": 519.0, "POP1965": 597.0, "POP1970": 729.0, "POP1975": 926.0, "POP1980": 1175.0, "POP1985": 1476.0, "POP1990": 1791.0, "POP1995": 2157.0, "POP2000": 2493.0, "POP2005": 2902.0, "POP2010": 3100.0, "POP2015": 3453.0, "POP2020": 4184.0, "POP2025": 5083.0, "POP2050": 6156.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [38.698058, 9.035256]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "NOTE": null, "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931.0, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981.0, "MAX_POP20": 8258981.0, "MAX_POP50": 8258981.0, "MAX_POP300": 8258981.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 496.0, "MAX_AREAKM": 496.0, "MIN_AREAMI": 191.0, "MAX_AREAMI": 191.0, "MIN_PERKM": 245.0, "MAX_PERKM": 245.0, "MIN_PERMI": 152.0, "MAX_PERMI": 152.0, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26.0, "GN_POP": 7153309.0, "ELEVATION": null, "GTOPO30": 1149.0, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041.0, "POP1955": 1396.0, "POP1960": 1873.0, "POP1965": 2511.0, "POP1970": 3290.0, "POP1975": 4273.0, "POP1980": 5079.0, "POP1985": 5839.0, "POP1990": 6365.0, "POP1995": 6687.0, "POP2000": 7128.0, "POP2005": 7653.0, "POP2010": 7873.0, "POP2015": 8221.0, "POP2020": 8832.0, "POP2025": 9404.0, "POP2050": 9814.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [51.422398, 35.673888]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331.0, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116.0, "MAX_POP20": 1588839.0, "MAX_POP50": 1590116.0, "MAX_POP300": 1590116.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 706.0, "MAX_AREAKM": 708.0, "MIN_AREAMI": 273.0, "MAX_AREAMI": 273.0, "MIN_PERKM": 398.0, "MAX_PERKM": 405.0, "MIN_PERMI": 248.0, "MAX_PERMI": 251.0, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 1837969.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556.0, "POP1955": 588.0, "POP1960": 620.0, "POP1965": 836.0, "POP1970": 1045.0, "POP1975": 1150.0, "POP1980": 1247.0, "POP1985": 1359.0, "POP1990": 1559.0, "POP1995": 1789.0, "POP2000": 1959.0, "POP2005": 2093.0, "POP2010": 2146.0, "POP2015": 2219.0, "POP2020": 2310.0, "POP2025": 2380.0, "POP2050": 2444.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-123.12359, 49.275362]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865.0, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421.0, "MAX_POP20": 4377344.0, "MAX_POP50": 5190755.0, "MAX_POP300": 5190755.0, "MAX_POP310": 5190755.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1432.0, "MAX_AREAKM": 2286.0, "MIN_AREAMI": 553.0, "MAX_AREAMI": 883.0, "MIN_PERKM": 464.0, "MAX_PERKM": 1161.0, "MIN_PERMI": 289.0, "MAX_PERMI": 721.0, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 4612191.0, "ELEVATION": null, "GTOPO30": 173.0, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068.0, "POP1955": 1365.0, "POP1960": 1744.0, "POP1965": 2093.0, "POP1970": 2535.0, "POP1975": 2770.0, "POP1980": 3008.0, "POP1985": 3355.0, "POP1990": 3807.0, "POP1995": 4197.0, "POP2000": 4607.0, "POP2005": 5035.0, "POP2010": 5213.0, "POP2015": 5447.0, "POP2020": 5687.0, "POP2025": 5827.0, "POP2050": 5946.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-79.421966, 43.701925]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "NOTE": null, "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910.0, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146.0, "MAX_POP20": 10991915.0, "MAX_POP50": 12611862.0, "MAX_POP300": 12611862.0, "MAX_POP310": 12611862.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1675.0, "MAX_AREAKM": 2447.0, "MIN_AREAMI": 647.0, "MAX_AREAMI": 945.0, "MIN_PERKM": 570.0, "MAX_PERKM": 1064.0, "MIN_PERMI": 354.0, "MAX_PERMI": 661.0, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 13076300.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098.0, "POP1955": 5799.0, "POP1960": 6598.0, "POP1965": 7317.0, "POP1970": 8105.0, "POP1975": 8745.0, "POP1980": 9422.0, "POP1985": 9959.0, "POP1990": 10513.0, "POP1995": 11154.0, "POP2000": 11847.0, "POP2005": 12553.0, "POP2010": 12795.0, "POP2015": 13089.0, "POP2020": 13432.0, "POP2025": 13653.0, "POP2050": 13768.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-58.399477, -34.600555]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "NOTE": null, "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958.0, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671.0, "MAX_POP20": 3720671.0, "MAX_POP50": 4803365.0, "MAX_POP300": 4793793.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 594.0, "MAX_AREAKM": 1471.0, "MIN_AREAMI": 229.0, "MAX_AREAMI": 568.0, "MIN_PERKM": 409.0, "MAX_PERKM": 1100.0, "MIN_PERMI": 254.0, "MAX_PERMI": 683.0, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 3043532.0, "ELEVATION": null, "GTOPO30": 1808.0, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129.0, "POP1955": 184.0, "POP1960": 263.0, "POP1965": 369.0, "POP1970": 472.0, "POP1975": 674.0, "POP1980": 978.0, "POP1985": 1160.0, "POP1990": 1306.0, "POP1995": 1616.0, "POP2000": 1963.0, "POP2005": 2994.0, "POP2010": 3277.0, "POP2015": 3768.0, "POP2020": 4730.0, "POP2025": 5836.0, "POP2050": 7175.0, "CITYALT": null, "clustered:unrelated": 0.026652256104289895}, "geometry": {"type": "Point", "coordinates": [69.181314, 34.518636]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "NOTE": null, "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369.0, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335.0, "MAX_POP20": 1610331.0, "MAX_POP50": 1610331.0, "MAX_POP300": 1610331.0, "MAX_POP310": 1610331.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 488.0, "MAX_AREAKM": 533.0, "MIN_AREAMI": 189.0, "MAX_AREAMI": 206.0, "MIN_PERKM": 444.0, "MAX_PERKM": 497.0, "MIN_PERMI": 276.0, "MAX_PERMI": 309.0, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1691468.0, "ELEVATION": 171.0, "GTOPO30": 164.0, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086.0, "POP1955": 2087.0, "POP1960": 2089.0, "POP1965": 2080.0, "POP1970": 2070.0, "POP1975": 2059.0, "POP1980": 2049.0, "POP1985": 2069.0, "POP1990": 2096.0, "POP1995": 2127.0, "POP2000": 2158.0, "POP2005": 2264.0, "POP2010": 2315.0, "POP2015": 2385.0, "POP2020": 2451.0, "POP2025": 2476.0, "POP2050": 2496.0, "CITYALT": "Vienna", "clustered:unrelated": 0.8531217419718522}, "geometry": {"type": "Point", "coordinates": [16.364693, 48.201961]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177.0, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377.0, "MAX_POP20": 2545035.0, "MAX_POP50": 2564188.0, "MAX_POP300": 2564188.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1010.0, "MAX_AREAKM": 1554.0, "MIN_AREAMI": 390.0, "MAX_AREAMI": 600.0, "MIN_PERKM": 360.0, "MAX_PERKM": 843.0, "MIN_PERMI": 224.0, "MAX_PERMI": 524.0, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": 3730206.0, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332.0, "POP1955": 1574.0, "POP1960": 1851.0, "POP1965": 2068.0, "POP1970": 2334.0, "POP1975": 2561.0, "POP1980": 2765.0, "POP1985": 2935.0, "POP1990": 3117.0, "POP1995": 3257.0, "POP2000": 3433.0, "POP2005": 3641.0, "POP2010": 3728.0, "POP2015": 3851.0, "POP2020": 4013.0, "POP2025": 4137.0, "POP2050": 4238.0, "CITYALT": null, "clustered:unrelated": 0.20540003994444933}, "geometry": {"type": "Point", "coordinates": [144.97307, -37.818085]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "NOTE": null, "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1.0, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341.0, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742.0, "MAX_POP20": 8275696.0, "MAX_POP50": 8647783.0, "MAX_POP300": 9212245.0, "MAX_POP310": 9212245.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 536.0, "MAX_AREAKM": 1708.0, "MIN_AREAMI": 207.0, "MAX_AREAMI": 660.0, "MIN_PERKM": 288.0, "MAX_PERKM": 1087.0, "MIN_PERMI": 179.0, "MAX_PERMI": 675.0, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 7871900.0, "ELEVATION": null, "GTOPO30": 10.0, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604.0, "POP1955": 760.0, "POP1960": 955.0, "POP1965": 1230.0, "POP1970": 1741.0, "POP1975": 2023.0, "POP1980": 2217.0, "POP1985": 2446.0, "POP1990": 2711.0, "POP1995": 2676.0, "POP2000": 2640.0, "POP2005": 2606.0, "POP2010": 2603.0, "POP2015": 2651.0, "POP2020": 2862.0, "POP2025": 3104.0, "POP2050": 3305.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [121.568333, 25.035833]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEPAR": null, "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "NOTE": null, "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361.0, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870.0, "MAX_POP20": 6558538.0, "MAX_POP50": 14868745.0, "MAX_POP300": 14870543.0, "MAX_POP310": 14903021.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1338.0, "MAX_AREAKM": 5803.0, "MIN_AREAMI": 517.0, "MAX_AREAMI": 2241.0, "MIN_PERKM": 534.0, "MAX_PERKM": 2202.0, "MIN_PERMI": 332.0, "MAX_PERMI": 1369.0, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 3694820.0, "ELEVATION": 89.0, "GTOPO30": 115.0, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34.0, "UN_LONG": -118.25, "POP1950": 4046.0, "POP1955": 5154.0, "POP1960": 6530.0, "POP1965": 7408.0, "POP1970": 8378.0, "POP1975": 8926.0, "POP1980": 9512.0, "POP1985": 10181.0, "POP1990": 10883.0, "POP1995": 11339.0, "POP2000": 11814.0, "POP2005": 12307.0, "POP2010": 12500.0, "POP2015": 12773.0, "POP2020": 13160.0, "POP2025": 13461.0, "POP2050": 13672.0, "CITYALT": "Los Angeles", "clustered:unrelated": 0.09618518946921106}, "geometry": {"type": "Point", "coordinates": [-118.181926, 33.991924]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEPAR": null, "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "NOTE": null, "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963.0, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723.0, "MAX_POP20": 2240256.0, "MAX_POP50": 3764385.0, "MAX_POP300": 5678280.0, "MAX_POP310": 5678280.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1114.0, "MAX_AREAKM": 3447.0, "MIN_AREAMI": 430.0, "MAX_AREAMI": 1331.0, "MIN_PERKM": 548.0, "MAX_PERKM": 1898.0, "MIN_PERMI": 341.0, "MAX_PERMI": 1179.0, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 552433.0, "ELEVATION": 7.0, "GTOPO30": 11.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298.0, "POP1955": 1539.0, "POP1960": 1823.0, "POP1965": 2135.0, "POP1970": 2488.0, "POP1975": 2626.0, "POP1980": 2777.0, "POP1985": 3063.0, "POP1990": 3376.0, "POP1995": 3651.0, "POP2000": 3949.0, "POP2005": 4241.0, "POP2010": 4338.0, "POP2015": 4464.0, "POP2020": 4636.0, "POP2025": 4778.0, "POP2050": 4889.0, "CITYALT": "Washington D.C."}, "geometry": {"type": "Point", "coordinates": [-77.011364, 38.901495]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEPAR": null, "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": null, "CAPALT": null, "CAPIN": "UN Headquarters", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "NOTE": null, "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581.0, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946.0, "MAX_POP20": 11947707.0, "MAX_POP50": 18788144.0, "MAX_POP300": 18788144.0, "MAX_POP310": 18924578.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1137.0, "MAX_AREAKM": 8185.0, "MIN_AREAMI": 439.0, "MAX_AREAMI": 3160.0, "MIN_PERKM": 497.0, "MAX_PERKM": 4993.0, "MIN_PERMI": 309.0, "MAX_PERMI": 3102.0, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 8008278.0, "ELEVATION": 10.0, "GTOPO30": 2.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338.0, "POP1955": 13219.0, "POP1960": 14164.0, "POP1965": 15177.0, "POP1970": 16191.0, "POP1975": 15880.0, "POP1980": 15601.0, "POP1985": 15827.0, "POP1990": 16086.0, "POP1995": 16943.0, "POP2000": 17846.0, "POP2005": 18732.0, "POP2010": 19040.0, "POP2015": 19441.0, "POP2020": 19974.0, "POP2025": 20370.0, "POP2050": 20628.0, "CITYALT": "New York"}, "geometry": {"type": "Point", "coordinates": [-73.981962, 40.751924]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "NOTE": null, "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743.0, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282.0, "MAX_POP20": 8370578.0, "MAX_POP50": 10011551.0, "MAX_POP300": 10011551.0, "MAX_POP310": 10011551.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1914.0, "MAX_AREAKM": 3198.0, "MIN_AREAMI": 739.0, "MAX_AREAMI": 1235.0, "MIN_PERKM": 994.0, "MAX_PERKM": 2440.0, "MIN_PERMI": 618.0, "MAX_PERMI": 1516.0, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 7421209.0, "ELEVATION": null, "GTOPO30": 21.0, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361.0, "POP1955": 8278.0, "POP1960": 8196.0, "POP1965": 7869.0, "POP1970": 7509.0, "POP1975": 7546.0, "POP1980": 7660.0, "POP1985": 7667.0, "POP1990": 7654.0, "POP1995": 7908.0, "POP2000": 8225.0, "POP2005": 8505.0, "POP2010": 8567.0, "POP2015": 8607.0, "POP2020": 8618.0, "POP2025": 8618.0, "POP2050": 8618.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-0.118667, 51.50194]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "NOTE": null, "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044.0, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610.0, "MAX_POP20": 9945243.0, "MAX_POP50": 10140950.0, "MAX_POP300": 10140950.0, "MAX_POP310": 10140950.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1249.0, "MAX_AREAKM": 1327.0, "MIN_AREAMI": 482.0, "MAX_AREAMI": 512.0, "MIN_PERKM": 852.0, "MAX_PERKM": 926.0, "MIN_PERMI": 529.0, "MAX_PERMI": 575.0, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34.0, "GN_POP": 11174257.0, "ELEVATION": null, "GTOPO30": 28.0, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29.0, "POP1950": 967.0, "POP1955": 1249.0, "POP1960": 1453.0, "POP1965": 2001.0, "POP1970": 2772.0, "POP1975": 3600.0, "POP1980": 4397.0, "POP1985": 5407.0, "POP1990": 6552.0, "POP1995": 7665.0, "POP2000": 8744.0, "POP2005": 9709.0, "POP2010": 10061.0, "POP2015": 10530.0, "POP2020": 11177.0, "POP2025": 11695.0, "POP2050": 12102.0, "CITYALT": null, "clustered:unrelated": 0.7174818555528036}, "geometry": {"type": "Point", "coordinates": [29.008055, 41.106942]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEPAR": null, "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "NOTE": null, "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410.0, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753.0, "MAX_POP20": 5322753.0, "MAX_POP50": 5322753.0, "MAX_POP300": 5322753.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 854.0, "MAX_AREAKM": 854.0, "MIN_AREAMI": 330.0, "MAX_AREAMI": 330.0, "MIN_PERKM": 459.0, "MAX_PERKM": 459.0, "MIN_PERMI": 285.0, "MAX_PERMI": 285.0, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 4205961.0, "ELEVATION": null, "GTOPO30": 618.0, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111.0, "POP1955": 131.0, "POP1960": 156.0, "POP1965": 227.0, "POP1970": 408.0, "POP1975": 710.0, "POP1980": 1055.0, "POP1985": 1566.0, "POP1990": 2325.0, "POP1995": 3035.0, "POP2000": 3567.0, "POP2005": 4193.0, "POP2010": 4465.0, "POP2015": 4856.0, "POP2020": 5405.0, "POP2025": 5866.0, "POP2050": 6275.0, "CITYALT": "Riyadh"}, "geometry": {"type": "Point", "coordinates": [46.770795, 24.642779]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1.0, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157.0, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858.0, "MAX_POP20": 2443605.0, "MAX_POP50": 2443605.0, "MAX_POP300": 2443605.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 534.0, "MAX_AREAKM": 542.0, "MIN_AREAMI": 206.0, "MAX_AREAMI": 209.0, "MIN_PERKM": 295.0, "MAX_PERKM": 300.0, "MIN_PERMI": 183.0, "MAX_PERMI": 187.0, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11.0, "GN_POP": 3433441.0, "ELEVATION": null, "GTOPO30": 7.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618.0, "POP1955": 705.0, "POP1960": 803.0, "POP1965": 945.0, "POP1970": 1114.0, "POP1975": 1339.0, "POP1980": 1609.0, "POP1985": 1925.0, "POP1990": 2155.0, "POP1995": 2394.0, "POP2000": 2715.0, "POP2005": 3087.0, "POP2010": 3215.0, "POP2015": 3357.0, "POP2020": 3504.0, "POP2025": 3627.0, "POP2050": 3744.0, "CITYALT": null, "clustered:unrelated": 0.23060651059459725}, "geometry": {"type": "Point", "coordinates": [18.433042, -33.918065]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "NOTE": null, "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901.0, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015.0, "MAX_POP20": 11030955.0, "MAX_POP50": 11547877.0, "MAX_POP300": 11547877.0, "MAX_POP310": 11547877.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1434.0, "MAX_AREAKM": 1639.0, "MIN_AREAMI": 554.0, "MAX_AREAMI": 633.0, "MIN_PERKM": 875.0, "MAX_PERKM": 1135.0, "MIN_PERMI": 544.0, "MAX_PERMI": 705.0, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356.0, "POP1955": 5749.0, "POP1960": 6170.0, "POP1965": 6622.0, "POP1970": 7106.0, "POP1975": 7623.0, "POP1980": 8136.0, "POP1985": 8580.0, "POP1990": 8987.0, "POP1995": 9201.0, "POP2000": 10016.0, "POP2005": 10416.0, "POP2010": 10452.0, "POP2015": 10495.0, "POP2020": 10524.0, "POP2025": 10526.0, "POP2050": 10526.0, "CITYALT": "Moscow"}, "geometry": {"type": "Point", "coordinates": [37.613576, 55.754109]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEPAR": null, "NAMEALT": "Ciudad de M\u00e9xico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "NOTE": null, "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597.0, "MEGANAME": "Ciudad de M\u00e9xico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002.0, "MAX_POP20": 17250245.0, "MAX_POP50": 18948089.0, "MAX_POP300": 18948089.0, "MAX_POP310": 18948089.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 895.0, "MAX_AREAKM": 2080.0, "MIN_AREAMI": 345.0, "MAX_AREAMI": 803.0, "MIN_PERKM": 256.0, "MAX_PERKM": 889.0, "MIN_PERMI": 159.0, "MAX_PERMI": 552.0, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 11285654.0, "ELEVATION": null, "GTOPO30": 2216.0, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883.0, "POP1955": 3801.0, "POP1960": 5012.0, "POP1965": 6653.0, "POP1970": 8769.0, "POP1975": 10690.0, "POP1980": 13010.0, "POP1985": 14109.0, "POP1990": 15312.0, "POP1995": 16811.0, "POP2000": 18022.0, "POP2005": 18735.0, "POP2010": 19028.0, "POP2015": 19485.0, "POP2020": 20189.0, "POP2025": 20695.0, "POP2050": 21009.0, "CITYALT": "Mexico City", "clustered:unrelated": 0.7947836398745314}, "geometry": {"type": "Point", "coordinates": [-99.132934, 19.444388]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Former capital", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "NOTE": null, "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497.0, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910.0, "MAX_POP20": 7105663.0, "MAX_POP50": 7411389.0, "MAX_POP300": 7453740.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1035.0, "MAX_AREAKM": 1332.0, "MIN_AREAMI": 400.0, "MAX_AREAMI": 514.0, "MIN_PERKM": 638.0, "MAX_PERKM": 882.0, "MIN_PERMI": 397.0, "MAX_PERMI": 548.0, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 1536.0, "ELEVATION": null, "GTOPO30": 89.0, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305.0, "POP1955": 468.0, "POP1960": 762.0, "POP1965": 1135.0, "POP1970": 1414.0, "POP1975": 1890.0, "POP1980": 2572.0, "POP1985": 3500.0, "POP1990": 4764.0, "POP1995": 5966.0, "POP2000": 7233.0, "POP2005": 8767.0, "POP2010": 9466.0, "POP2015": 10572.0, "POP2020": 12403.0, "POP2025": 14134.0, "POP2050": 15796.0, "CITYALT": null, "clustered:unrelated": 0.003996449237175459}, "geometry": {"type": "Point", "coordinates": [3.389585, 6.445207]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "NOTE": null, "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762.0, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900.0, "MAX_POP20": 2143900.0, "MAX_POP50": 2666328.0, "MAX_POP300": 2666328.0, "MAX_POP310": 2666328.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 505.0, "MAX_AREAKM": 683.0, "MIN_AREAMI": 195.0, "MAX_AREAMI": 264.0, "MIN_PERKM": 382.0, "MAX_PERKM": 500.0, "MIN_PERMI": 238.0, "MAX_PERMI": 311.0, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 35452.0, "ELEVATION": 187.0, "GTOPO30": 183.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884.0, "POP1955": 2143.0, "POP1960": 2456.0, "POP1965": 2780.0, "POP1970": 3135.0, "POP1975": 3300.0, "POP1980": 3390.0, "POP1985": 3429.0, "POP1990": 3450.0, "POP1995": 3425.0, "POP2000": 3385.0, "POP2005": 3348.0, "POP2010": 3339.0, "POP2015": 3333.0, "POP2020": 3330.0, "POP2025": 3330.0, "POP2050": 3330.0, "CITYALT": "Rome"}, "geometry": {"type": "Point", "coordinates": [12.481312, 41.897901]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670.0, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861.0, "MAX_POP20": 11120470.0, "MAX_POP50": 16510327.0, "MAX_POP300": 23647944.0, "MAX_POP310": 137121250.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2512.0, "MAX_AREAKM": 118844.0, "MIN_AREAMI": 970.0, "MAX_AREAMI": 45886.0, "MIN_PERKM": 1837.0, "MAX_PERKM": 93615.0, "MIN_PERMI": 1141.0, "MAX_PERMI": 58169.0, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22.0, "GN_POP": 7480601.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331.0, "POP1955": 4628.0, "POP1960": 4945.0, "POP1965": 5284.0, "POP1970": 5646.0, "POP1975": 6034.0, "POP1980": 6448.0, "POP1985": 6890.0, "POP1990": 7362.0, "POP1995": 8486.0, "POP2000": 9782.0, "POP2005": 10717.0, "POP2010": 11106.0, "POP2015": 11741.0, "POP2020": 12842.0, "POP2025": 13807.0, "POP2050": 14545.0, "CITYALT": null, "clustered:unrelated": 0.6514532359087705}, "geometry": {"type": "Point", "coordinates": [116.386339, 39.930838]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "NOTE": null, "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745.0, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842.0, "MAX_POP20": 3401842.0, "MAX_POP50": 3418532.0, "MAX_POP300": 3418532.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 698.0, "MAX_AREAKM": 719.0, "MIN_AREAMI": 269.0, "MAX_AREAMI": 277.0, "MIN_PERKM": 554.0, "MAX_PERKM": 571.0, "MIN_PERMI": 344.0, "MAX_PERMI": 355.0, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 2750547.0, "ELEVATION": null, "GTOPO30": 1724.0, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137.0, "POP1955": 201.0, "POP1960": 293.0, "POP1965": 404.0, "POP1970": 531.0, "POP1975": 677.0, "POP1980": 862.0, "POP1985": 1090.0, "POP1990": 1380.0, "POP1995": 1755.0, "POP2000": 2233.0, "POP2005": 2787.0, "POP2010": 3010.0, "POP2015": 3363.0, "POP2020": 4052.0, "POP2025": 4881.0, "POP2050": 5871.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [36.814711, -1.2814]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "NOTE": null, "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911.0, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972.0, "MAX_POP20": 15074060.0, "MAX_POP50": 22017580.0, "MAX_POP300": 22031364.0, "MAX_POP310": 44354170.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1303.0, "MAX_AREAKM": 19435.0, "MIN_AREAMI": 503.0, "MAX_AREAMI": 7504.0, "MIN_PERKM": 318.0, "MAX_PERKM": 10224.0, "MIN_PERMI": 197.0, "MAX_PERMI": 6353.0, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 8540121.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452.0, "POP1955": 1972.0, "POP1960": 2679.0, "POP1965": 3297.0, "POP1970": 3915.0, "POP1975": 4813.0, "POP1980": 5984.0, "POP1985": 7009.0, "POP1990": 8175.0, "POP1995": 8322.0, "POP2000": 8390.0, "POP2005": 8843.0, "POP2010": 9125.0, "POP2015": 9703.0, "POP2020": 10792.0, "POP2025": 11689.0, "POP2050": 12363.0, "CITYALT": null, "clustered:unrelated": 0.7074838752698291}, "geometry": {"type": "Point", "coordinates": [106.827491, -6.172471]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEPAR": null, "NAMEALT": "Bogot\u00e1", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "NOTE": null, "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689.0, "MEGANAME": "Bogot\u00e1", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661.0, "MAX_POP20": 6333154.0, "MAX_POP50": 6333154.0, "MAX_POP300": 6333154.0, "MAX_POP310": 6333154.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 523.0, "MAX_AREAKM": 523.0, "MIN_AREAMI": 202.0, "MAX_AREAMI": 202.0, "MIN_PERKM": 186.0, "MAX_PERKM": 186.0, "MIN_PERMI": 116.0, "MAX_PERMI": 116.0, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34.0, "GN_POP": 7102602.0, "ELEVATION": null, "GTOPO30": 2620.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630.0, "POP1955": 894.0, "POP1960": 1269.0, "POP1965": 1780.0, "POP1970": 2383.0, "POP1975": 3040.0, "POP1980": 3525.0, "POP1985": 4087.0, "POP1990": 4740.0, "POP1995": 5494.0, "POP2000": 6356.0, "POP2005": 7353.0, "POP2010": 7772.0, "POP2015": 8320.0, "POP2020": 8916.0, "POP2025": 9299.0, "POP2050": 9600.0, "CITYALT": "Bogota"}, "geometry": {"type": "Point", "coordinates": [-74.085289, 4.598369]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEPAR": null, "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "NOTE": null, "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630.0, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123.0, "MAX_POP20": 15091561.0, "MAX_POP50": 29872827.0, "MAX_POP300": 30682197.0, "MAX_POP310": 30696820.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1479.0, "MAX_AREAKM": 4900.0, "MIN_AREAMI": 571.0, "MAX_AREAMI": 1892.0, "MIN_PERKM": 1365.0, "MAX_PERKM": 5010.0, "MIN_PERMI": 848.0, "MAX_PERMI": 3113.0, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 7734614.0, "ELEVATION": null, "GTOPO30": 23.0, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494.0, "POP1955": 3029.0, "POP1960": 3680.0, "POP1965": 4738.0, "POP1970": 5585.0, "POP1975": 6450.0, "POP1980": 7349.0, "POP1985": 8328.0, "POP1990": 9061.0, "POP1995": 9707.0, "POP2000": 10534.0, "POP2005": 11487.0, "POP2010": 11893.0, "POP2015": 12503.0, "POP2020": 13465.0, "POP2025": 14451.0, "POP2050": 15561.0, "CITYALT": "Cairo"}, "geometry": {"type": "Point", "coordinates": [31.248022, 30.051906]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236.0, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884.0, "MAX_POP20": 16172884.0, "MAX_POP50": 26630672.0, "MAX_POP300": 26631586.0, "MAX_POP310": 40576904.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 3792.0, "MAX_AREAKM": 16400.0, "MIN_AREAMI": 1464.0, "MAX_AREAMI": 6332.0, "MIN_PERKM": 2219.0, "MAX_PERKM": 12342.0, "MIN_PERMI": 1379.0, "MAX_PERMI": 7669.0, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23.0, "GN_POP": 14608512.0, "ELEVATION": null, "GTOPO30": 6.0, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066.0, "POP1955": 6299.0, "POP1960": 6542.0, "POP1965": 6793.0, "POP1970": 7055.0, "POP1975": 7326.0, "POP1980": 7608.0, "POP1985": 7901.0, "POP1990": 8205.0, "POP1995": 10423.0, "POP2000": 13243.0, "POP2005": 14503.0, "POP2010": 14987.0, "POP2015": 15789.0, "POP2020": 17214.0, "POP2025": 18466.0, "POP2050": 19412.0, "CITYALT": null, "clustered:unrelated": 0.059566147667819425}, "geometry": {"type": "Point", "coordinates": [121.434558, 31.218398]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147.0, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740.0, "MAX_POP20": 24218878.0, "MAX_POP50": 31303497.0, "MAX_POP300": 31303497.0, "MAX_POP310": 31303497.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2130.0, "MAX_AREAKM": 5750.0, "MIN_AREAMI": 823.0, "MAX_AREAMI": 2220.0, "MIN_PERKM": 838.0, "MAX_PERKM": 2284.0, "MIN_PERMI": 521.0, "MAX_PERMI": 1419.0, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40.0, "GN_POP": 8336599.0, "ELEVATION": null, "GTOPO30": 40.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275.0, "POP1955": 13713.0, "POP1960": 16679.0, "POP1965": 20284.0, "POP1970": 23298.0, "POP1975": 26615.0, "POP1980": 28549.0, "POP1985": 30304.0, "POP1990": 32530.0, "POP1995": 33587.0, "POP2000": 34450.0, "POP2005": 35327.0, "POP2010": 35676.0, "POP2015": 36094.0, "POP2020": 36371.0, "POP2025": 36399.0, "POP2050": 36400.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [139.749461, 35.686962]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339.0, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908.0, "MAX_POP20": 20149761.0, "MAX_POP50": 20149761.0, "MAX_POP300": 20149761.0, "MAX_POP310": 20149761.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 442.0, "MAX_AREAKM": 1479.0, "MIN_AREAMI": 171.0, "MAX_AREAMI": 571.0, "MIN_PERKM": 244.0, "MAX_PERKM": 1021.0, "MIN_PERMI": 152.0, "MAX_PERMI": 634.0, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16.0, "GN_POP": 12691836.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857.0, "POP1955": 3432.0, "POP1960": 4060.0, "POP1965": 4854.0, "POP1970": 5811.0, "POP1975": 7082.0, "POP1980": 8658.0, "POP1985": 10341.0, "POP1990": 12308.0, "POP1995": 14111.0, "POP2000": 16086.0, "POP2005": 18202.0, "POP2010": 18978.0, "POP2015": 20072.0, "POP2020": 21946.0, "POP2025": 24051.0, "POP2050": 26385.0, "CITYALT": "Bombay", "clustered:unrelated": 0.7452571428136238}, "geometry": {"type": "Point", "coordinates": [72.855043, 19.018936]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "\u00cele-de-France", "ISO_A2": "FR", "NOTE": null, "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553.0, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172.0, "MAX_POP20": 7970513.0, "MAX_POP50": 9960588.0, "MAX_POP300": 9960588.0, "MAX_POP310": 9960588.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1121.0, "MAX_AREAKM": 2415.0, "MIN_AREAMI": 433.0, "MAX_AREAMI": 932.0, "MIN_PERKM": 542.0, "MAX_PERKM": 1891.0, "MIN_PERMI": 337.0, "MAX_PERMI": 1175.0, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 11177.0, "ELEVATION": null, "GTOPO30": 228.0, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522.0, "POP1955": 6796.0, "POP1960": 7411.0, "POP1965": 7968.0, "POP1970": 8350.0, "POP1975": 8558.0, "POP1980": 8669.0, "POP1985": 8956.0, "POP1990": 9330.0, "POP1995": 9510.0, "POP2000": 9692.0, "POP2005": 9852.0, "POP2010": 9904.0, "POP2015": 9958.0, "POP2020": 10007.0, "POP2025": 10031.0, "POP2050": 10036.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.331389, 48.868638]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official, admin", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Regi\u00f3n Metropolitana de Santiago", "ISO_A2": "CL", "NOTE": null, "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741.0, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014.0, "MAX_POP20": 5157058.0, "MAX_POP50": 5157058.0, "MAX_POP300": 5157058.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 570.0, "MAX_AREAKM": 903.0, "MIN_AREAMI": 220.0, "MAX_AREAMI": 349.0, "MIN_PERKM": 310.0, "MAX_PERKM": 558.0, "MIN_PERMI": 193.0, "MAX_PERMI": 347.0, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23.0, "GN_POP": 46611.0, "ELEVATION": null, "GTOPO30": 441.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322.0, "POP1955": 1618.0, "POP1960": 1980.0, "POP1965": 2294.0, "POP1970": 2647.0, "POP1975": 3138.0, "POP1980": 3721.0, "POP1985": 4201.0, "POP1990": 4616.0, "POP1995": 4964.0, "POP2000": 5275.0, "POP2005": 5599.0, "POP2010": 5720.0, "POP2015": 5879.0, "POP2020": 6084.0, "POP2025": 6224.0, "POP2050": 6310.0, "CITYALT": null, "clustered:unrelated": 0.917251483319913}, "geometry": {"type": "Point", "coordinates": [-70.668986, -33.448067]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004.0, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162.0, "MAX_POP20": 18577087.0, "MAX_POP50": 48715672.0, "MAX_POP300": 87652060.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2490.0, "MAX_AREAKM": 53331.0, "MIN_AREAMI": 962.0, "MAX_AREAMI": 20591.0, "MIN_PERKM": null, "MAX_PERKM": 35493.0, "MIN_PERMI": null, "MAX_PERMI": 22054.0, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28.0, "GN_POP": 4631392.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513.0, "POP1955": 5055.0, "POP1960": 5652.0, "POP1965": 6261.0, "POP1970": 6926.0, "POP1975": 7888.0, "POP1980": 9030.0, "POP1985": 9946.0, "POP1990": 10890.0, "POP1995": 11924.0, "POP2000": 13058.0, "POP2005": 14282.0, "POP2010": 14787.0, "POP2015": 15577.0, "POP2020": 17039.0, "POP2025": 18707.0, "POP2050": 20560.0, "CITYALT": "Calcutta"}, "geometry": {"type": "Point", "coordinates": [88.322729, 22.496915]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190.0, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175.0, "MAX_POP20": 8118691.0, "MAX_POP50": 8889292.0, "MAX_POP300": 8889292.0, "MAX_POP310": 8889292.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 316.0, "MAX_AREAKM": 1472.0, "MIN_AREAMI": 122.0, "MAX_AREAMI": 568.0, "MIN_PERKM": 203.0, "MAX_PERKM": 691.0, "MIN_PERMI": 126.0, "MAX_PERMI": 429.0, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21.0, "GN_POP": 6023699.0, "ELEVATION": null, "GTOPO30": 19.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950.0, "POP1955": 3592.0, "POP1960": 4374.0, "POP1965": 5387.0, "POP1970": 6637.0, "POP1975": 7557.0, "POP1980": 8583.0, "POP1985": 9086.0, "POP1990": 9595.0, "POP1995": 10174.0, "POP2000": 10803.0, "POP2005": 11469.0, "POP2010": 11748.0, "POP2015": 12171.0, "POP2020": 12775.0, "POP2025": 13179.0, "POP2050": 13413.0, "CITYALT": null, "clustered:unrelated": 0.4043426242306748}, "geometry": {"type": "Point", "coordinates": [-43.226966, -22.923077]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEPAR": null, "NAMEALT": "Sao Paulo|S\u00e3o Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "S\u00e3o Paulo", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439.0, "MEGANAME": "S\u00e3o Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084.0, "MAX_POP20": 17425624.0, "MAX_POP50": 18203351.0, "MAX_POP300": 18203351.0, "MAX_POP310": 18203351.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1434.0, "MAX_AREAKM": 2667.0, "MIN_AREAMI": 554.0, "MAX_AREAMI": 1030.0, "MIN_PERKM": 532.0, "MAX_PERKM": 1086.0, "MIN_PERMI": 330.0, "MAX_PERMI": 675.0, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27.0, "GN_POP": 10021295.0, "ELEVATION": null, "GTOPO30": 631.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334.0, "POP1955": 3044.0, "POP1960": 3970.0, "POP1965": 5494.0, "POP1970": 7620.0, "POP1975": 9614.0, "POP1980": 12089.0, "POP1985": 13395.0, "POP1990": 14776.0, "POP1995": 15948.0, "POP2000": 17099.0, "POP2005": 18333.0, "POP2010": 18845.0, "POP2015": 19582.0, "POP2020": 20544.0, "POP2025": 21124.0, "POP2050": 21428.0, "CITYALT": "Sao Paulo"}, "geometry": {"type": "Point", "coordinates": [-46.626965, -23.556733]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714.0, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457.0, "MAX_POP20": 2731457.0, "MAX_POP50": 3164008.0, "MAX_POP300": 3164008.0, "MAX_POP310": 3164008.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1078.0, "MAX_AREAKM": 1409.0, "MIN_AREAMI": 416.0, "MAX_AREAMI": 544.0, "MIN_PERKM": 468.0, "MAX_PERKM": 717.0, "MIN_PERMI": 291.0, "MAX_PERMI": 445.0, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": 4394576.0, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690.0, "POP1955": 1906.0, "POP1960": 2135.0, "POP1965": 2390.0, "POP1970": 2667.0, "POP1975": 2960.0, "POP1980": 3227.0, "POP1985": 3432.0, "POP1990": 3632.0, "POP1995": 3839.0, "POP2000": 4078.0, "POP2005": 4260.0, "POP2010": 4327.0, "POP2015": 4427.0, "POP2020": 4582.0, "POP2025": 4716.0, "POP2050": 4826.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [151.183233, -33.918065]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ADM1NAME": null, "ISO_A2": "SG", "NOTE": null, "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252.0, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529.0, "MAX_POP20": 4207001.0, "MAX_POP50": 4207001.0, "MAX_POP300": 4207001.0, "MAX_POP310": 4207001.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 305.0, "MAX_AREAKM": 456.0, "MIN_AREAMI": 118.0, "MAX_AREAMI": 176.0, "MIN_PERKM": 173.0, "MAX_PERKM": 288.0, "MIN_PERMI": 108.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104.0, "MAX_BBXMAX": 104.0, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 3547809.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016.0, "POP1955": 1306.0, "POP1960": 1634.0, "POP1965": 1880.0, "POP1970": 2075.0, "POP1975": 2263.0, "POP1980": 2415.0, "POP1985": 2709.0, "POP1990": 3016.0, "POP1995": 3478.0, "POP2000": 4017.0, "POP2005": 4327.0, "POP2010": 4436.0, "POP2015": 4592.0, "POP2020": 4809.0, "POP2025": 4965.0, "POP2050": 5104.0, "CITYALT": null, "clustered:unrelated": 0.7712475399221206}, "geometry": {"type": "Point", "coordinates": [103.853874, 1.294979]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ADM1NAME": null, "ISO_A2": "HK", "NOTE": null, "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729.0, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579.0, "MAX_POP20": 15779579.0, "MAX_POP50": 16718429.0, "MAX_POP300": 16718429.0, "MAX_POP310": 42594594.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 202.0, "MAX_AREAKM": 10661.0, "MIN_AREAMI": 78.0, "MAX_AREAMI": 4116.0, "MIN_PERKM": 219.0, "MAX_PERKM": 7493.0, "MIN_PERMI": 136.0, "MAX_PERMI": 4656.0, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 7012738.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682.0, "POP1955": 2121.0, "POP1960": 2620.0, "POP1965": 3191.0, "POP1970": 3458.0, "POP1975": 3943.0, "POP1980": 4609.0, "POP1985": 5070.0, "POP1990": 5677.0, "POP1995": 6206.0, "POP2000": 6662.0, "POP2005": 7057.0, "POP2010": 7206.0, "POP2015": 7419.0, "POP2020": 7744.0, "POP2025": 8040.0, "POP2050": 8305.0, "CITYALT": null, "clustered:unrelated": 0.8053687125725494}, "geometry": {"type": "Point", "coordinates": [114.183063, 22.306926]}} 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 0dba5ba3f..6eb02825a 100644 --- a/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json +++ b/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json @@ -1,247 +1,125 @@ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 6789, "properties": { "bin": "80dbfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1603495, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 801747.5, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 306.83672, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 153.41836, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:sum:LABEL_Y": -63.888522, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -31.944261, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 12.4, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.2, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 2318641490, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320745, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:sum:POP_EST": 30281307, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 15140653.5, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424826, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 11712413, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID_EH": 46849664, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "804dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 18, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 53, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 6, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 38, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 36, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 40, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 25804065, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 85, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 18170, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 228193, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 18144, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 220016468, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 220016468, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 118, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 155, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 65, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -584, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -591, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 41.5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 86, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -63.049399, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -625.840964, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 17.746706, "tippecanoe:sum:LABEL_Y": 178.99401999999999, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 10433887195, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 5.888888888888889, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 4.222222222222222, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.444444444444445, "tippecanoe:mean:MAPCOLOR13": 3.7777777777777779, "tippecanoe:mean:POP_EST": 2867118.3333333337, "tippecanoe:mean:POP_RANK": 9.444444444444445, "tippecanoe:mean:POP_YEAR": 2018.888888888889, "tippecanoe:mean:GDP_MD": 25354.777777777777, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 24446274.222222225, "tippecanoe:mean:WOE_ID_EH": 24446274.222222225, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.11111111111111, "tippecanoe:mean:LONG_LEN": 17.22222222222222, "tippecanoe:mean:ABBREV_LEN": 7.222222222222222, "tippecanoe:mean:TINY": -64.88888888888889, "tippecanoe:mean:HOMEPART": -65.66666666666667, "tippecanoe:mean:MIN_ZOOM": 0.5555555555555556, "tippecanoe:mean:MIN_LABEL": 4.611111111111111, "tippecanoe:mean:MAX_LABEL": 9.555555555555556, "tippecanoe:mean:LABEL_X": -69.53788488888888, "tippecanoe:mean:LABEL_Y": 19.888224444444444, "tippecanoe:mean:NE_ID": 1159320799.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.050781, 31.877558 ], [ -57.216797, 21.779905 ], [ -65.742188, 14.519780 ], [ -76.025391, 19.394068 ], [ -74.619141, 30.221102 ], [ -62.050781, 31.877558 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8001fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1699876, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 1699876, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 44.686469, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 44.686469, "tippecanoe:min:LABEL_X": 44.686469, "tippecanoe:max:LABEL_X": 44.686469, "tippecanoe:sum:LABEL_Y": 58.249357, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": 58.249357, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 18, "tippecanoe:min:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 18, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 5.2, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.2, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:max:MAX_LABEL": 5.2, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159321201, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321201, "tippecanoe:min:NE_ID": 1159321201, "tippecanoe:max:NE_ID": 1159321201, "tippecanoe:sum:POP_EST": 144373535, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 144373535, "tippecanoe:min:POP_EST": 144373535, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424936, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424936, "tippecanoe:min:WOE_ID": 23424936, "tippecanoe:max:WOE_ID": 23424936, "tippecanoe:sum:WOE_ID_EH": 23424936, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424936, "tippecanoe:min:WOE_ID_EH": 23424936, "tippecanoe:max:WOE_ID_EH": 23424936, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "800ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.884766, 72.208678 ], [ -51.591797, 61.312452 ], [ -63.193359, 50.792047 ], [ -81.914062, 48.283193 ], [ -98.525391, 55.229023 ], [ -100.810547, 67.542167 ], [ -66.884766, 72.208678 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359, 50.792047 ], [ -54.843750, 40.979898 ], [ -62.050781, 31.877558 ], [ -74.619141, 30.221102 ], [ -84.550781, 37.090240 ], [ -81.914062, 48.283193 ], [ -63.193359, 50.792047 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80adfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, -14.604847 ], [ 23.906250, -24.686952 ], [ 18.369141, -35.029996 ], [ 4.394531, -35.746512 ], [ -2.109375, -24.766785 ], [ 4.570312, -15.284185 ], [ 16.259766, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.748047, 69.380313 ], [ -100.810547, 67.542167 ], [ -98.525391, 55.229023 ], [ -112.763672, 47.989922 ], [ -128.935547, 50.176898 ], [ -139.658203, 59.175928 ], [ -131.748047, 69.380313 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8095fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1121207, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 560603.5, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:max:GDP_MD": 1119190, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 227.74762800000003, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 113.87381400000001, "tippecanoe:min:LABEL_X": 101.892949, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_Y": -9.758109000000001, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -4.8790545000000009, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:max:LABEL_Y": -0.954404, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 2318642158, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159320845, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:sum:POP_EST": 271918687, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 135959343.5, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849814, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424846, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID_EH": 46849814, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424846, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0.5, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 135.878906, -7.710992 ], [ 133.857422, -18.895893 ], [ 122.783203, -21.779905 ], [ 114.257812, -14.519780 ], [ 115.664062, -3.864255 ], [ 126.298828, 0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 10269417, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 238785, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424925, "tippecanoe:mean:WOE_ID_EH": 23424925, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -8.271754, "tippecanoe:mean:LABEL_Y": 39.606675, "tippecanoe:mean:NE_ID": 1159321187, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.509766, 46.739861 ], [ -12.392578, 40.847060 ], [ -12.919922, 28.536275 ], [ -24.609375, 22.024546 ], [ -37.177734, 26.667096 ], [ -40.341797, 38.754083 ], [ -27.509766, 46.739861 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8089fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.642578, 3.337954 ], [ -146.337891, 1.669686 ], [ -142.119141, -8.928487 ], [ -148.798828, -18.229351 ], [ -161.630859, -16.467695 ], [ -165.410156, -5.790897 ], [ -158.642578, 3.337954 ] ] ] } } +{ "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": "80ebfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.462891, -55.727110 ], [ -154.951172, -58.401712 ], [ -148.183594, -68.942607 ], [ -179.648438, -73.302624 ], [ -190.458984, -63.114638 ], [ -174.462891, -55.727110 ] ] ], [ [ [ 185.537109, -55.727110 ], [ 205.048828, -58.401712 ], [ 211.816406, -68.942607 ], [ 180.351562, -73.302624 ], [ 169.541016, -63.114638 ], [ 185.537109, -55.727110 ] ] ] ] } } +{ "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": "8047fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -175.605469, 35.746512 ], [ -161.630859, 35.029996 ], [ -156.093750, 24.686952 ], [ -163.740234, 14.604847 ], [ -175.429688, 15.284185 ], [ -182.109375, 24.766785 ], [ -175.605469, 35.746512 ] ] ], [ [ [ 184.394531, 35.746512 ], [ 198.369141, 35.029996 ], [ 203.906250, 24.686952 ], [ 196.259766, 14.604847 ], [ 184.570312, 15.284185 ], [ 177.890625, 24.766785 ], [ 184.394531, 35.746512 ] ] ] ] } } +{ "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": "8039fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 385739, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 64289.833333333336, "tippecanoe:min:GDP_MD": 907, "tippecanoe:max:GDP_MD": 171091, "tippecanoe:sum:GDP_YEAR": 12102, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 7, "tippecanoe:sum:LABEL_X": 11.548945999999999, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 1.9248243333333333, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:max:LABEL_X": 18.011015, "tippecanoe:sum:LABEL_Y": 185.88957100000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 30.98159516666667, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:max:LABEL_Y": 42.547643, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 37, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 6.166666666666667, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 17, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 2.8333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 3.1666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 22.2, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.6999999999999999, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0.7833333333333333, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 6955925494, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320915.6666668, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:sum:POP_EST": 98677389, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 16446231.5, "tippecanoe:min:POP_EST": 77142, "tippecanoe:max:POP_EST": 43053054, "tippecanoe:sum:POP_RANK": 76, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -490, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -81.66666666666667, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 140549216, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:sum:WOE_ID_EH": 140549216, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.213004 ], [ 13.271484, 37.509726 ], [ 9.404297, 25.641526 ], [ -2.460938, 22.187405 ], [ -12.919922, 28.536275 ], [ -12.392578, 40.847060 ], [ 2.021484, 45.213004 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.119141, -8.928487 ], [ -131.308594, -9.882275 ], [ -125.332031, -19.145168 ], [ -129.814453, -29.075375 ], [ -142.822266, -29.305561 ], [ -148.798828, -18.229351 ], [ -142.119141, -8.928487 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "808dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 372097, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 186048.5, "tippecanoe:min:GDP_MD": 35, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 209.48951499999999, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 104.74475749999999, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_Y": -9.124202, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -4.562101, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:sum:NE_ID": 2318641610, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320805, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:sum:POP_EST": 5705956, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 2852978, "tippecanoe:min:POP_EST": 2387, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4035, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -96, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424858, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 11712429, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID_EH": 46849817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424908.5, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 4, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 2.811371 ], [ 115.664062, -3.864255 ], [ 114.257812, -14.519780 ], [ 103.974609, -19.394068 ], [ 94.394531, -13.838080 ], [ 95.185547, -2.547988 ], [ 106.435547, 2.811371 ] ] ] } } +{ "type": "Feature", "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": "80d1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, -35.029996 ], [ 26.982422, -43.452919 ], [ 22.675781, -54.007769 ], [ 4.218750, -56.218923 ], [ -4.394531, -46.195042 ], [ 4.394531, -35.746512 ], [ 18.369141, -35.029996 ] ] ] } } +{ "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": "8023fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -175.781250, 56.218923 ], [ -157.324219, 54.007769 ], [ -153.017578, 43.452919 ], [ -161.630859, 35.029996 ], [ -175.605469, 35.746512 ], [ -184.394531, 46.195042 ], [ -175.781250, 56.218923 ] ] ], [ [ [ 184.218750, 56.218923 ], [ 202.675781, 54.007769 ], [ 206.982422, 43.452919 ], [ 198.369141, 35.029996 ], [ 184.394531, 35.746512 ], [ 175.605469, 46.195042 ], [ 184.218750, 56.218923 ] ] ] ] } } +{ "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": "806bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6.166666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 122404, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 20400.666666666668, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:max:GDP_MD": 50400, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 3.1666666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 153.70882600000003, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 25.61813766666667, "tippecanoe:min:LABEL_X": 15.9005, "tippecanoe:max:LABEL_X": 32.948555, "tippecanoe:sum:LABEL_Y": 12.579715, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 2.0966191666666669, "tippecanoe:min:LABEL_Y": -1.897196, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 100, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 16.666666666666669, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 3.8333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 19, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 60, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 6955925288, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320881.3333333, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:sum:POP_EST": 164874917, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 27479152.833333333, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -594, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 117124163, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 19520693.833333333, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:sum:WOE_ID_EH": 117124163, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 19520693.833333333, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 37.880859, 8.928487 ], [ 33.662109, -1.669686 ], [ 21.357422, -3.337954 ], [ 14.589844, 5.790897 ], [ 18.369141, 16.467695 ], [ 31.201172, 18.229351 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "803ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 187646861, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 303092, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 389095, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12113, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 121988700, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 145413742, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 49.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 35.291341, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 136.580237, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 143.04638999999998, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159320575, "tippecanoe:sum:NE_ID": 6955926156, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 31274476.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 64849.166666666664, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 20331450, "tippecanoe:mean:WOE_ID_EH": 24235623.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 1.1666666666666668, "tippecanoe:mean:MIN_LABEL": 3.1166666666666669, "tippecanoe:mean:MAX_LABEL": 8.200000000000001, "tippecanoe:mean:LABEL_X": 22.763372833333336, "tippecanoe:mean:LABEL_Y": 23.841064999999998, "tippecanoe:mean:NE_ID": 1159321026, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 37.177734, 29.305561 ], [ 31.201172, 18.229351 ], [ 18.369141, 16.467695 ], [ 9.404297, 25.641526 ], [ 13.271484, 37.509726 ], [ 28.828125, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "805ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 9, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:mean:ADM0_DIF": 0.1111111111111111, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 43581, "tippecanoe:count:GDP_MD": 9, "tippecanoe:mean:GDP_MD": 4842.333333333333, "tippecanoe:min:GDP_MD": 44, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:sum:GDP_YEAR": 18158, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:mean:GDP_YEAR": 2017.5555555555557, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:HOMEPART": 9, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 48, "tippecanoe:count:LABELRANK": 9, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -542.980765, "tippecanoe:count:LABEL_X": 9, "tippecanoe:mean:LABEL_X": -60.33119611111111, "tippecanoe:min:LABEL_X": -62.188252, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:sum:LABEL_Y": 109.959432, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:mean:LABEL_Y": 12.217714666666668, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:max:LABEL_Y": 17.352249, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:LEVEL": 9, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 121, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:mean:LONG_LEN": 13.444444444444445, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 29, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:mean:MAPCOLOR7": 3.2222222222222225, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 30, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 85, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:mean:MAX_LABEL": 9.444444444444445, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 41, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:mean:MIN_LABEL": 4.555555555555555, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 105, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:mean:NAME_LEN": 11.666666666666666, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:sum:NE_ID": 10433887911, "tippecanoe:count:NE_ID": 9, "tippecanoe:mean:NE_ID": 1159320879, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:sum:POP_EST": 3513081, "tippecanoe:count:POP_EST": 9, "tippecanoe:mean:POP_EST": 390342.3333333333, "tippecanoe:min:POP_EST": 4649, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:sum:POP_RANK": 82, "tippecanoe:count:POP_RANK": 9, "tippecanoe:mean:POP_RANK": 9.11111111111111, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -274, "tippecanoe:count:TINY": 9, "tippecanoe:mean:TINY": -30.444444444444444, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 210823816, "tippecanoe:count:WOE_ID": 9, "tippecanoe:mean:WOE_ID": 23424868.444444445, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:sum:WOE_ID_EH": 210823816, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:mean:WOE_ID_EH": 23424868.444444445, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:sum:scalerank": 21, "tippecanoe:count:scalerank": 9, "tippecanoe:mean:scalerank": 2.3333333333333337, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": "802dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 16, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 16, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 16, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 53, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 55, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 16, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 227966087, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 196, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 32296, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2354758, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 32280, "tippecanoe:count:WOE_ID": 16, "tippecanoe:max:WOE_ID": 23424972, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 281097956, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:max:WOE_ID_EH": 23424995, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 327948125, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 132, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 138, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 68, "tippecanoe:count:TINY": 16, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1379, "tippecanoe:count:HOMEPART": 16, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -84, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.9, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 142.7, "tippecanoe:count:LABEL_X": 16, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 33.084182, "tippecanoe:sum:LABEL_X": 663.980747, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 552.20492, "tippecanoe:count:NE_ID": 16, "tippecanoe:max:NE_ID": 1159321309, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 18549133226, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.125, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 3.3125, "tippecanoe:mean:MAPCOLOR8": 2.8125, "tippecanoe:mean:MAPCOLOR9": 3.4375, "tippecanoe:mean:MAPCOLOR13": 0.125, "tippecanoe:mean:POP_EST": 14247880.4375, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 147172.375, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568622.25, "tippecanoe:mean:WOE_ID_EH": 20496757.8125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 8.625, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86.1875, "tippecanoe:mean:HOMEPART": -5.25, "tippecanoe:mean:MIN_ZOOM": 0.4375, "tippecanoe:mean:MIN_LABEL": 4.18125, "tippecanoe:mean:MAX_LABEL": 8.91875, "tippecanoe:mean:LABEL_X": 41.4987966875, "tippecanoe:mean:LABEL_Y": 34.5128075, "tippecanoe:mean:NE_ID": 1159320826.625, "tippecanoe:count": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 49.781264 ], [ 53.701172, 49.382373 ], [ 59.150391, 37.649034 ], [ 50.185547, 29.075375 ], [ 37.177734, 29.305561 ], [ 28.828125, 39.639538 ], [ 36.123047, 49.781264 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8045fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 225682, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 37613.666666666664, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:sum:GDP_YEAR": 12112, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -502.63287199999999, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": -83.77214533333333, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:max:LABEL_X": -77.318767, "tippecanoe:sum:LABEL_Y": 105.77001200000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 17.628335333333337, "tippecanoe:min:LABEL_Y": 14.794801, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:sum:LEVEL": 11, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 1.8333333333333333, "tippecanoe:min:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 48, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 2.6666666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 54, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 24.2, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 4.033333333333333, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 44, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 6955924238, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320706.3333333, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:max:NE_ID": 1159320931, "tippecanoe:sum:POP_EST": 41087206, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 6847867.666666667, "tippecanoe:min:POP_EST": 64948, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:sum:POP_RANK": 71, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 11.833333333333334, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -390, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -65, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 140548869, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424811.5, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:max:WOE_ID": 23424858, "tippecanoe:sum:WOE_ID_EH": 140548869, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424811.5, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:max:WOE_ID_EH": 23424858, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0.6666666666666666, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": "801ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 28, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 28, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 28, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 28, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 56, "tippecanoe:count:GEOU_DIF": 28, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 28, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 28, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 28, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 89, "tippecanoe:count:MAPCOLOR8": 28, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 97, "tippecanoe:count:MAPCOLOR9": 28, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 101, "tippecanoe:count:MAPCOLOR13": 28, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 196, "tippecanoe:count:POP_EST": 28, "tippecanoe:max:POP_EST": 83429615, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 437433879, "tippecanoe:count:POP_RANK": 28, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 361, "tippecanoe:count:POP_YEAR": 28, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 56532, "tippecanoe:count:GDP_MD": 28, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 5542, "tippecanoe:sum:GDP_MD": 10714600, "tippecanoe:count:GDP_YEAR": 28, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 56531, "tippecanoe:count:WOE_ID": 28, "tippecanoe:max:WOE_ID": 23424976, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 605691022, "tippecanoe:count:WOE_ID_EH": 28, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 655150221, "tippecanoe:count:ADM0_A3_UN": 28, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2772, "tippecanoe:count:ADM0_A3_WB": 28, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2772, "tippecanoe:count:NAME_LEN": 28, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 227, "tippecanoe:count:LONG_LEN": 28, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 240, "tippecanoe:count:ABBREV_LEN": 28, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 126, "tippecanoe:count:TINY": 28, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2563, "tippecanoe:count:HOMEPART": 28, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 28, "tippecanoe:count:MIN_ZOOM": 28, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 28, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 108.10000000000001, "tippecanoe:count:MAX_LABEL": 28, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 241.5, "tippecanoe:count:LABEL_X": 28, "tippecanoe:max:LABEL_X": 34.508268, "tippecanoe:min:LABEL_X": 4.800448, "tippecanoe:sum:LABEL_X": 520.222516, "tippecanoe:count:LABEL_Y": 28, "tippecanoe:max:LABEL_Y": 57.066872, "tippecanoe:min:LABEL_Y": 39.345388, "tippecanoe:sum:LABEL_Y": 1329.7201530000003, "tippecanoe:count:NE_ID": 28, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 32460984236, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.535714285714286, "tippecanoe:mean:ADM0_DIF": 0.03571428571428571, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1785714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4642857142857146, "tippecanoe:mean:MAPCOLOR9": 3.607142857142857, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15622638.535714286, "tippecanoe:mean:POP_RANK": 12.892857142857143, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 382664.28571428576, "tippecanoe:mean:GDP_YEAR": 2018.9642857142858, "tippecanoe:mean:WOE_ID": 21631822.214285714, "tippecanoe:mean:WOE_ID_EH": 23398222.17857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.107142857142858, "tippecanoe:mean:LONG_LEN": 8.571428571428572, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -91.53571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.860714285714286, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:mean:LABEL_X": 18.579375571428576, "tippecanoe:mean:LABEL_Y": 47.49000546428572, "tippecanoe:mean:NE_ID": 1159320865.5714286, "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, 58.401712 ], [ 36.123047, 49.781264 ], [ 28.828125, 39.639538 ], [ 13.271484, 37.509726 ], [ 2.021484, 45.213004 ], [ 5.537109, 55.727110 ], [ 25.048828, 58.401712 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80e7fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, -54.007769 ], [ 40.341797, -59.175928 ], [ 48.251953, -69.380313 ], [ 16.523438, -76.142958 ], [ -7.119141, -66.196009 ], [ 4.218750, -56.218923 ], [ 22.675781, -54.007769 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8043fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 73.564453, 33.724340 ], [ 74.970703, 22.431340 ], [ 65.742188, 16.130262 ], [ 54.667969, 19.145168 ], [ 50.185547, 29.075375 ], [ 59.150391, 37.649034 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80f1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.189453, -67.542167 ], [ 113.115234, -72.208678 ], [ 145.283203, -81.268385 ], [ -34.453125, -87.364326 ], [ 16.523438, -76.142958 ], [ 48.251953, -69.380313 ], [ 79.189453, -67.542167 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8021fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 43, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -64, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 322521745, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 99, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16136, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 554279, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16140, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549214, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044442, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 82, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 93, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 10, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 30.9, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 65, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 77.129553, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 555.3665579999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 315.427716, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568056, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 5.375, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 40315218.125, "tippecanoe:mean:POP_RANK": 12.375, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 69284.875, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568651.75, "tippecanoe:mean:WOE_ID_EH": 23005555.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.25, "tippecanoe:mean:LONG_LEN": 11.625, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:mean:MIN_LABEL": 3.8625, "tippecanoe:mean:MAX_LABEL": 8.125, "tippecanoe:mean:LABEL_X": 69.42081974999999, "tippecanoe:mean:LABEL_Y": 39.4284645, "tippecanoe:mean:NE_ID": 1159321007, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.291016, 58.309489 ], [ 87.802734, 52.643063 ], [ 86.748047, 40.313043 ], [ 73.564453, 33.724340 ], [ 59.150391, 37.649034 ], [ 53.701172, 49.382373 ], [ 68.291016, 58.309489 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80ddfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:max:POP_EST": 30, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 3, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "8053fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 33, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 128702884, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 79, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 14129, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 175837, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 333548, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 14119, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424930, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117123896, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424930, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117123896, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -592, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 11, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 29.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 61, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 51.143509, "tippecanoe:min:LABEL_X": 33.673428, "tippecanoe:sum:LABEL_X": 301.976339, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 26.055972, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 118.394225, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 8685559699, "tippecanoe:mean:scalerank": 0.7142857142857143, "tippecanoe:mean:LABELRANK": 4.714285714285714, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 2.2857142857142858, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 2.4285714285714286, "tippecanoe:mean:MAPCOLOR13": 7.571428571428571, "tippecanoe:mean:POP_EST": 18386126.285714289, "tippecanoe:mean:POP_RANK": 11.285714285714287, "tippecanoe:mean:POP_YEAR": 2018.4285714285714, "tippecanoe:mean:GDP_MD": 47649.71428571428, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 16731985.142857144, "tippecanoe:mean:WOE_ID_EH": 16731985.142857144, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:mean:ABBREV_LEN": 5.285714285714286, "tippecanoe:mean:TINY": -84.57142857142857, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 1.5714285714285715, "tippecanoe:mean:MIN_LABEL": 4.214285714285714, "tippecanoe:mean:MAX_LABEL": 8.714285714285714, "tippecanoe:mean:LABEL_X": 43.139477, "tippecanoe:mean:LABEL_Y": 16.913460714285717, "tippecanoe:mean:NE_ID": 1240794242.7142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 29.305561 ], [ 50.185547, 29.075375 ], [ 54.667969, 19.145168 ], [ 48.691406, 9.882275 ], [ 37.880859, 8.928487 ], [ 31.201172, 18.229351 ], [ 37.177734, 29.305561 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8009fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 5.166666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1239665, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 206610.83333333335, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:max:GDP_MD": 530883, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 94.651842, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 15.775307, "tippecanoe:min:LABEL_X": -7.058429, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:sum:LABEL_Y": 371.53556900000009, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 61.92259483333334, "tippecanoe:min:LABEL_Y": 58.724865, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 50, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 20, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 41, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 6.833333333333333, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 6955924804, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320800.6666668, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:sum:POP_EST": 22558815, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 3759802.5, "tippecanoe:min:POP_EST": 29884, "tippecanoe:max:POP_EST": 10285453, "tippecanoe:sum:POP_RANK": 66, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -388, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 106277162, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 17712860.333333333, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:sum:WOE_ID_EH": 129702162, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 21617027, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 1.3333333333333333, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "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": "8041fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 111138961, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 645805, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 71715554, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 71715554, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 322.01897299999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 63.59606600000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 37046320.333333339, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 215268.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905184.666666669, "tippecanoe:mean:WOE_ID_EH": 23905184.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 7.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 107.33965766666666, "tippecanoe:mean:LABEL_Y": 21.19868866666667, "tippecanoe:mean:NE_ID": 1159320967, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 37.160317 ], [ 120.498047, 29.916852 ], [ 118.828125, 19.228177 ], [ 107.753906, 15.029686 ], [ 97.119141, 22.268764 ], [ 98.261719, 33.651208 ], [ 110.654297, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "806ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.476562, 16.551962 ], [ -106.523438, 12.125264 ], [ -105.205078, 0.878872 ], [ -113.994141, -5.266008 ], [ -124.277344, -1.406109 ], [ -127.089844, 8.928487 ], [ -118.476562, 16.551962 ] ] ] } } +{ "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": "8017fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.880859, 66.196009 ], [ 184.218750, 56.218923 ], [ 175.605469, 46.195042 ], [ 158.378906, 43.897892 ], [ 145.371094, 51.124213 ], [ 145.371094, 62.512318 ], [ 172.880859, 66.196009 ] ] ], [ [ [ -187.119141, 66.196009 ], [ -175.781250, 56.218923 ], [ -184.394531, 46.195042 ], [ -201.621094, 43.897892 ], [ -214.628906, 51.124213 ], [ -214.628906, 62.512318 ], [ -187.119141, 66.196009 ] ] ] ] } } +{ "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": "808ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 107435, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 107435, "tippecanoe:min:GDP_MD": 107435, "tippecanoe:max:GDP_MD": 107435, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -78.188375, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -78.188375, "tippecanoe:min:LABEL_X": -78.188375, "tippecanoe:max:LABEL_X": -78.188375, "tippecanoe:sum:LABEL_Y": -1.259076, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -1.259076, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:max:LABEL_Y": -1.259076, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159320567, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320567, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:max:NE_ID": 1159320567, "tippecanoe:sum:POP_EST": 17373662, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 17373662, "tippecanoe:min:POP_EST": 17373662, "tippecanoe:max:POP_EST": 17373662, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424801, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424801, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:max:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID_EH": 23424801, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424801, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:max:WOE_ID_EH": 23424801, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "804ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.775391, 31.877558 ], [ 164.443359, 22.998852 ], [ 160.751953, 12.211180 ], [ 149.765625, 8.667918 ], [ 140.185547, 16.804541 ], [ 142.470703, 27.916767 ], [ 154.775391, 31.877558 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8073fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:max:GDP_MD": 268, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:max:POP_EST": 18008, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:max:POP_RANK": 6, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "803dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 763092, "tippecanoe:sum:POP_EST": 192417963, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 2530, "tippecanoe:sum:GDP_MD": 335742, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424911, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 70274440, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424911, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 70274440, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 83.639914, "tippecanoe:sum:LABEL_X": 263.36517100000006, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 28.297925, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 80.049566, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 3477961981, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 64139321, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 111914, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424813.333333333, "tippecanoe:mean:WOE_ID_EH": 23424813.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 87.78839033333334, "tippecanoe:mean:LABEL_Y": 26.683188666666667, "tippecanoe:mean:NE_ID": 1159320660.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.748047, 40.313043 ], [ 98.261719, 33.651208 ], [ 97.119141, 22.268764 ], [ 85.429688, 16.720385 ], [ 74.970703, 22.431340 ], [ 73.564453, 33.724340 ], [ 86.748047, 40.313043 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8075fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 58539, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 58539, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -5.568618, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -5.568618, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_Y": 7.49139, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 7.49139, "tippecanoe:min:LABEL_Y": 7.49139, "tippecanoe:max:LABEL_Y": 7.49139, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 1159320507, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320507, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:max:NE_ID": 1159320507, "tippecanoe:sum:POP_EST": 25716544, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 25716544, "tippecanoe:min:POP_EST": 25716544, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424854, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424854, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:max:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID_EH": 23424854, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424854, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:max:WOE_ID_EH": 23424854, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "804bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 149833309, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 6208769, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 46849827, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 46849827, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 6.2, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 259.310374, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 59.794946, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 2318642272, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 74916654.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 3104384.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424913.5, "tippecanoe:mean:WOE_ID_EH": 23424913.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 129.655187, "tippecanoe:mean:LABEL_Y": 29.897473, "tippecanoe:mean:NE_ID": 1159321136, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.275391, 34.307144 ], [ 142.470703, 27.916767 ], [ 140.185547, 16.804541 ], [ 128.232422, 12.382928 ], [ 118.828125, 19.228177 ], [ 120.498047, 29.916852 ], [ 132.275391, 34.307144 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8097fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 95335558, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 23309, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 89058, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 12114, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 140549327, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 140549327, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 45, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 45, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 20.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 181.86301600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -86.337881, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 6955925882, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15889259.666666666, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14843, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887.833333333, "tippecanoe:mean:WOE_ID_EH": 23424887.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4166666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 30.310502666666669, "tippecanoe:mean:LABEL_Y": -14.389646833333332, "tippecanoe:mean:NE_ID": 1159320980.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -1.669686 ], [ 41.572266, -11.264612 ], [ 37.265625, -22.917923 ], [ 23.906250, -24.686952 ], [ 16.259766, -14.604847 ], [ 21.357422, -3.337954 ], [ 33.662109, -1.669686 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8069fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:min:POP_EST": 433285, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -196, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "80a3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 29085904, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 29327, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 70274563, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 70274563, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -95, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 147.58818300000002, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -50.655477000000008, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 3477962651, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 9695301.333333334, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9775.666666666666, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854.333333333, "tippecanoe:mean:WOE_ID_EH": 23424854.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 8.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -31.666666666666669, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 49.19606100000001, "tippecanoe:mean:LABEL_Y": -16.885159, "tippecanoe:mean:NE_ID": 1159320883.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, -8.928487 ], [ 61.523438, -16.551962 ], [ 58.623047, -28.690588 ], [ 45.878906, -31.278551 ], [ 37.265625, -22.917923 ], [ 41.572266, -11.264612 ], [ 52.910156, -8.928487 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80f3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:max:GDP_MD": 898, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:max:POP_EST": 4490, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "80c1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, -22.998852 ], [ -2.109375, -24.766785 ], [ 4.394531, -35.746512 ], [ -4.394531, -46.195042 ], [ -21.621094, -43.897892 ], [ -25.224609, -31.877558 ], [ -15.556641, -22.998852 ] ] ] } } +{ "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": "8033fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 175.605469, 46.195042 ], [ 184.394531, 35.746512 ], [ 177.890625, 24.766785 ], [ 164.443359, 22.998852 ], [ 154.775391, 31.877558 ], [ 158.378906, 43.897892 ], [ 175.605469, 46.195042 ] ] ], [ [ [ -184.394531, 46.195042 ], [ -175.605469, 35.746512 ], [ -182.109375, 24.766785 ], [ -195.556641, 22.998852 ], [ -205.224609, 31.877558 ], [ -201.621094, 43.897892 ], [ -184.394531, 46.195042 ] ] ] ] } } +{ "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": "800dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.476562, 76.142958 ], [ -131.748047, 69.380313 ], [ -139.658203, 59.175928 ], [ -157.324219, 54.007769 ], [ -175.781250, 56.218923 ], [ -187.119141, 66.196009 ], [ -163.476562, 76.142958 ] ] ], [ [ [ 196.523438, 76.142958 ], [ 228.251953, 69.380313 ], [ 220.341797, 59.175928 ], [ 202.675781, 54.007769 ], [ 184.218750, 56.218923 ], [ 172.880859, 66.196009 ], [ 196.523438, 76.142958 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.480469, -3.425692 ], [ 156.357422, -10.660608 ], [ 155.390625, -22.024546 ], [ 142.822266, -26.667096 ], [ 133.857422, -18.895893 ], [ 135.878906, -7.710992 ], [ 147.480469, -3.425692 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8085fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:max:POP_EST": 97625, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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", "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": "8005fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, 87.364326 ], [ 196.523438, 76.142958 ], [ 172.880859, 66.196009 ], [ 145.371094, 62.512318 ], [ 117.773438, 66.196009 ], [ 94.130859, 76.163993 ], [ 145.546875, 87.364326 ] ] ], [ [ [ -214.453125, 87.364326 ], [ -163.476562, 76.142958 ], [ -187.119141, 66.196009 ], [ -214.628906, 62.512318 ], [ -242.226562, 66.196009 ], [ -265.869141, 76.163993 ], [ -214.453125, 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": "807bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 158680, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 79340, "tippecanoe:min:GDP_MD": 63177, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 72.866815, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 36.4334075, "tippecanoe:min:LABEL_X": 34.959183, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_Y": -5.502823, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -2.7514115, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642308, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321154, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:max:NE_ID": 1159321337, "tippecanoe:sum:POP_EST": 110579436, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 55289718, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:max:POP_EST": 58005463, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849836, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424918, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:max:WOE_ID": 23424973, "tippecanoe:sum:WOE_ID_EH": 46849836, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424918, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:max:WOE_ID_EH": 23424973, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "8071fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -175.429688, 15.284185 ], [ -163.740234, 14.604847 ], [ -158.642578, 3.337954 ], [ -165.410156, -5.790897 ], [ -176.044922, -3.951941 ], [ -180.791016, 5.878332 ], [ -175.429688, 15.284185 ] ] ], [ [ [ 184.570312, 15.284185 ], [ 196.259766, 14.604847 ], [ 201.357422, 3.337954 ], [ 194.589844, -5.790897 ], [ 183.955078, -3.951941 ], [ 179.208984, 5.878332 ], [ 184.570312, 15.284185 ] ] ] ] } } +{ "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": "8059fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 5, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 573990, "tippecanoe:count:GDP_MD": 5, "tippecanoe:mean:GDP_MD": 114798, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:HOMEPART": 5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:LABELRANK": 5, "tippecanoe:mean:LABELRANK": 3.8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 22.349898, "tippecanoe:count:LABEL_X": 5, "tippecanoe:mean:LABEL_X": 4.4699796, "tippecanoe:min:LABEL_X": -1.036941, "tippecanoe:max:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_Y": 40.874474000000009, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:mean:LABEL_Y": 8.1748948, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:max:LABEL_Y": 10.324775, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:LEVEL": 5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:mean:LONG_LEN": 5.8, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:mean:MAPCOLOR13": 5.2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR7": 2.6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR8": 2.4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR9": 2.4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 41.7, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 8.34, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 16.4, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:mean:MIN_LABEL": 3.28, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:mean:NAME_LEN": 5.8, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 5796604093, "tippecanoe:count:NE_ID": 5, "tippecanoe:mean:NE_ID": 1159320818.6, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:sum:POP_EST": 277141352, "tippecanoe:count:POP_EST": 5, "tippecanoe:mean:POP_EST": 55428270.4, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_RANK": 5, "tippecanoe:mean:POP_RANK": 14.8, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -495, "tippecanoe:count:TINY": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 117124246, "tippecanoe:count:WOE_ID": 5, "tippecanoe:mean:WOE_ID": 23424849.2, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:max:WOE_ID": 23424965, "tippecanoe:sum:WOE_ID_EH": 117124246, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:mean:WOE_ID_EH": 23424849.2, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:max:WOE_ID_EH": 23424965, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8095fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 271918687, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1119190, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 1121207, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424846, "tippecanoe:sum:WOE_ID": 46849814, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424846, "tippecanoe:sum:WOE_ID_EH": 46849814, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 101.892949, "tippecanoe:sum:LABEL_X": 227.74762800000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -0.954404, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -9.758109000000001, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320845, "tippecanoe:sum:NE_ID": 2318642158, "tippecanoe:mean:scalerank": 0.5, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 135959343.5, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 560603.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424907, "tippecanoe:mean:WOE_ID_EH": 23424907, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 113.87381400000001, "tippecanoe:mean:LABEL_Y": -4.8790545000000009, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 135.878906, -7.710992 ], [ 133.857422, -18.895893 ], [ 122.783203, -21.779905 ], [ 114.257812, -14.519780 ], [ 115.664062, -3.864255 ], [ 126.298828, 0.175781 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8099fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "8039fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 17, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 37, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 43053054, "tippecanoe:min:POP_EST": 77142, "tippecanoe:sum:POP_EST": 98677389, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 76, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 171091, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 385739, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 12102, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 140549216, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 140549216, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -490, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 22.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 18.011015, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 11.548945999999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 42.547643, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 185.88957100000003, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 6955925494, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 2.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.166666666666667, "tippecanoe:mean:POP_EST": 16446231.5, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 64289.833333333336, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -81.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.7833333333333333, "tippecanoe:mean:MIN_LABEL": 3.6999999999999999, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 1.9248243333333333, "tippecanoe:mean:LABEL_Y": 30.98159516666667, "tippecanoe:mean:NE_ID": 1159320915.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.213004 ], [ 13.271484, 37.509726 ], [ 9.404297, 25.641526 ], [ -2.460938, 22.187405 ], [ -12.919922, 28.536275 ], [ -12.392578, 40.847060 ], [ 2.021484, 45.213004 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8093fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.205078, 0.878872 ], [ -95.097656, -4.390229 ], [ -94.570312, -16.720385 ], [ -105.029297, -22.431340 ], [ -114.257812, -16.130262 ], [ -113.994141, -5.266008 ], [ -105.205078, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "808dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 5705956, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4035, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 372097, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424858, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 46849817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 209.48951499999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -9.124202, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 2318641610, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 2852978, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:mean:GDP_MD": 186048.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 11712429, "tippecanoe:mean:WOE_ID_EH": 23424908.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 104.74475749999999, "tippecanoe:mean:LABEL_Y": -4.562101, "tippecanoe:mean:NE_ID": 1159320805, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 2.811371 ], [ 115.664062, -3.864255 ], [ 114.257812, -14.519780 ], [ 103.974609, -19.394068 ], [ 94.394531, -13.838080 ], [ 95.185547, -2.547988 ], [ 106.435547, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80edfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.117188, -58.031372 ], [ 169.541016, -63.114638 ], [ 180.351562, -73.302624 ], [ 145.283203, -81.268385 ], [ 113.115234, -72.208678 ], [ 128.408203, -61.312452 ], [ 150.117188, -58.031372 ] ] ], [ [ [ -209.882812, -58.031372 ], [ -190.458984, -63.114638 ], [ -179.648438, -73.302624 ], [ -214.716797, -81.268385 ], [ -246.884766, -72.208678 ], [ -231.591797, -61.312452 ], [ -209.882812, -58.031372 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "806bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 164874917, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 50400, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 122404, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117124163, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117124163, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 60, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 100, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 19, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 32.948555, "tippecanoe:min:LABEL_X": 15.9005, "tippecanoe:sum:LABEL_X": 153.70882600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -1.897196, "tippecanoe:sum:LABEL_Y": 12.579715, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 6955925288, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.1666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 27479152.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20400.666666666668, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 19520693.833333333, "tippecanoe:mean:WOE_ID_EH": 19520693.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 16.666666666666669, "tippecanoe:mean:ABBREV_LEN": 6.166666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 25.61813766666667, "tippecanoe:mean:LABEL_Y": 2.0966191666666669, "tippecanoe:mean:NE_ID": 1159320881.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 37.880859, 8.928487 ], [ 33.662109, -1.669686 ], [ 21.357422, -3.337954 ], [ 14.589844, 5.790897 ], [ 18.369141, 16.467695 ], [ 31.201172, 18.229351 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8079fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -138.427734, 11.264612 ], [ -127.089844, 8.928487 ], [ -124.277344, -1.406109 ], [ -131.308594, -9.882275 ], [ -142.119141, -8.928487 ], [ -146.337891, 1.669686 ], [ -138.427734, 11.264612 ] ] ] } } +{ "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": "80bbfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -182.460938, -22.187405 ], [ -170.595703, -25.641526 ], [ -166.728516, -37.509726 ], [ -177.978516, -45.213004 ], [ -192.392578, -40.847060 ], [ -192.919922, -28.536275 ], [ -182.460938, -22.187405 ] ] ], [ [ [ 177.539062, -22.187405 ], [ 189.404297, -25.641526 ], [ 193.271484, -37.509726 ], [ 182.021484, -45.213004 ], [ 167.607422, -40.847060 ], [ 167.080078, -28.536275 ], [ 177.539062, -22.187405 ] ] ] ] } } +{ "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": "8077fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:max:GDP_MD": 401, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:max:POP_EST": 113815, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "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": "8065fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 20, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3515651, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 878912.75, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 380.74066999999999, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 95.18516749999999, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:max:LABEL_X": 104.50487, "tippecanoe:sum:LABEL_Y": 72.36803099999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 18.092007749999998, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 21, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 10.4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 2.6, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 4637284198, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159321049.5, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:sum:POP_EST": 1506575298, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 376643824.5, "tippecanoe:min:POP_EST": 16486542, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 18, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 93699347, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424836.75, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:sum:WOE_ID_EH": 93699347, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424836.75, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.119141, 22.268764 ], [ 107.753906, 15.029686 ], [ 106.435547, 2.811371 ], [ 95.185547, -2.547988 ], [ 84.902344, 4.390229 ], [ 85.429688, 16.720385 ], [ 97.119141, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "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": "8019fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0.75, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3228762, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 807190.5, "tippecanoe:min:GDP_MD": 3465, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:sum:GDP_YEAR": 8071, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2017.75, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -17.006739, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": -4.25168475, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:max:LABEL_X": -2.116346, "tippecanoe:sum:LABEL_Y": 211.16583099999998, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 52.79145774999999, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 40, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 2.75, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 5.25, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 20, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 34.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.675, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 40, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:sum:NE_ID": 4637283026, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320756.5, "tippecanoe:min:NE_ID": 1159320713, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:sum:POP_EST": 71923225, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 17980806.25, "tippecanoe:min:POP_EST": 62792, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:sum:POP_RANK": 44, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 17568596.75, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:sum:WOE_ID_EH": 93699452, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 2.75, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.114638 ], [ 5.537109, 55.727110 ], [ 2.021484, 45.213004 ], [ -12.392578, 40.847060 ], [ -27.509766, 46.739861 ], [ -29.882812, 58.031372 ], [ -10.458984, 63.114638 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "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": "8083fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 117133, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 29283.25, "tippecanoe:min:GDP_MD": 418, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 45.831388, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 11.457847, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_Y": -9.316601, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": -2.32915025, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:max:LABEL_Y": 2.333, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 12.25, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 16, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 34, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 15, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:sum:NE_ID": 4637283090, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320772.5, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:sum:POP_EST": 35568916, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 8892229, "tippecanoe:min:POP_EST": 215056, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:sum:POP_RANK": 49, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -192, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -48, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 93699337, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424834.25, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:sum:WOE_ID_EH": 93699337, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424834.25, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.790897 ], [ 21.357422, -3.337954 ], [ 16.259766, -14.604847 ], [ 4.570312, -15.284185 ], [ -0.791016, -5.878332 ], [ 3.955078, 3.951941 ], [ 14.589844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "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": "8067fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 7, "tippecanoe:sum:ABBREV_LEN": 29, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4.142857142857143, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:mean:ADM0_DIF": 0.2857142857142857, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 2022293, "tippecanoe:count:GDP_MD": 7, "tippecanoe:mean:GDP_MD": 288899, "tippecanoe:min:GDP_MD": 3101, "tippecanoe:max:GDP_MD": 907050, "tippecanoe:sum:GDP_YEAR": 14128, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:mean:GDP_YEAR": 2018.2857142857143, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:HOMEPART": 7, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:LABELRANK": 7, "tippecanoe:mean:LABELRANK": 3.7142857142857146, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": -439.40447900000006, "tippecanoe:count:LABEL_X": 7, "tippecanoe:mean:LABEL_X": -62.77206842857144, "tippecanoe:min:LABEL_X": -85.069347, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:sum:LABEL_Y": 83.53883499999999, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:mean:LABEL_Y": 11.934119285714285, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:LEVEL": 7, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:mean:MAPCOLOR13": 6.571428571428571, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR7": 2.857142857142857, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR8": 2.857142857142857, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR9": 2.7142857142857146, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 59.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 24.5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 8115247543, "tippecanoe:count:NE_ID": 7, "tippecanoe:mean:NE_ID": 1159321077.5714286, "tippecanoe:min:NE_ID": 1159320517, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:sum:POP_EST": 139648054, "tippecanoe:count:POP_EST": 7, "tippecanoe:mean:POP_EST": 19949722, "tippecanoe:min:POP_EST": 157538, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:sum:POP_RANK": 94, "tippecanoe:count:POP_RANK": 7, "tippecanoe:mean:POP_RANK": 13.428571428571429, "tippecanoe:min:POP_RANK": 9, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -590, "tippecanoe:count:TINY": 7, "tippecanoe:mean:TINY": -84.28571428571429, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 117124347, "tippecanoe:count:WOE_ID": 7, "tippecanoe:mean:WOE_ID": 16732049.57142857, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:sum:WOE_ID_EH": 165099246, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:mean:WOE_ID_EH": 23585606.57142857, "tippecanoe:min:WOE_ID_EH": 23424787, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 7, "tippecanoe:mean:scalerank": 0.42857142857142857, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": "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": "807ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.208984, 5.878332 ], [ 183.955078, -3.951941 ], [ 175.957031, -11.523088 ], [ 166.289062, -6.227934 ], [ 168.310547, 4.477856 ], [ 179.208984, 5.878332 ] ] ], [ [ [ -180.791016, 5.878332 ], [ -176.044922, -3.951941 ], [ -184.042969, -11.523088 ], [ -193.710938, -6.227934 ], [ -191.689453, 4.477856 ], [ -180.791016, 5.878332 ] ] ] ] } } +{ "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": "8087fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.902344, 4.390229 ], [ 95.185547, -2.547988 ], [ 94.394531, -13.838080 ], [ 83.935547, -19.228177 ], [ 73.476562, -12.125264 ], [ 74.794922, -0.878872 ], [ 84.902344, 4.390229 ] ] ] } } +{ "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": "808bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "8027fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.525391, 55.229023 ], [ -81.914062, 48.283193 ], [ -84.550781, 37.090240 ], [ -96.679688, 31.653381 ], [ -110.214844, 36.809285 ], [ -112.763672, 47.989922 ], [ -98.525391, 55.229023 ] ] ] } } +{ "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": "8007fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:min:POP_EST": 56225, "tippecanoe:max:POP_EST": 361313, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "8003fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, 87.364326 ], [ 196.523438, 76.142958 ], [ 228.251953, 69.380313 ], [ 259.189453, 67.542167 ], [ -66.884766, 72.208678 ], [ -34.716797, 81.268385 ], [ 145.546875, 87.364326 ] ] ], [ [ [ -214.453125, 87.364326 ], [ -163.476562, 76.142958 ], [ -131.748047, 69.380313 ], [ -100.810547, 67.542167 ], [ -426.884766, 72.208678 ], [ -394.716797, 81.268385 ], [ -214.453125, 87.364326 ] ] ] ] } } +{ "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": "809bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7124, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 1187.3333333333333, "tippecanoe:min:GDP_MD": 10, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:sum:GDP_YEAR": 12095, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2015.8333333333333, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -675.010406, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": -112.50173433333333, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:sum:LABEL_Y": -84.18719800000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": -14.031199666666668, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 51, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 7.166666666666667, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 4.166666666666667, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 26, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 53, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.833333333333334, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 23.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.9499999999999999, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:sum:NE_ID": 6955926130, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159321021.6666668, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:sum:POP_EST": 1322328, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 220388, "tippecanoe:min:POP_EST": 1620, "tippecanoe:max:POP_EST": 889953, "tippecanoe:sum:POP_RANK": 47, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 7.833333333333333, "tippecanoe:min:POP_RANK": 3, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -187, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -31.166666666666669, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 140549529, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424921.5, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID_EH": 140549529, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424921.5, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:sum:scalerank": 22, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 3.6666666666666667, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 5 }, "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": "8065fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 14, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 16486542, "tippecanoe:sum:POP_EST": 1506575298, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 3515651, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 93699347, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 93699347, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 20, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.4, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 104.50487, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 380.74066999999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 72.36803099999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 4637284198, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 376643824.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 878912.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424836.75, "tippecanoe:mean:WOE_ID_EH": 23424836.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.6, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 95.18516749999999, "tippecanoe:mean:LABEL_Y": 18.092007749999998, "tippecanoe:mean:NE_ID": 1159321049.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.119141, 22.268764 ], [ 107.753906, 15.029686 ], [ 106.435547, 2.811371 ], [ 95.185547, -2.547988 ], [ 84.902344, 4.390229 ], [ 85.429688, 16.720385 ], [ 97.119141, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "807dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.642578, 10.660608 ], [ -13.710938, 6.227934 ], [ -11.689453, -4.477856 ], [ -19.248047, -12.211180 ], [ -30.234375, -8.667918 ], [ -32.519531, 3.425692 ], [ -23.642578, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8019fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 20, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 62792, "tippecanoe:sum:POP_EST": 71923225, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 44, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3465, "tippecanoe:sum:GDP_MD": 3228762, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 8071, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699452, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 40, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 40, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 34.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -2.116346, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -17.006739, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 211.16583099999998, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320713, "tippecanoe:sum:NE_ID": 4637283026, "tippecanoe:mean:scalerank": 2.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.75, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 5.25, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 2.75, "tippecanoe:mean:POP_EST": 17980806.25, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 807190.5, "tippecanoe:mean:GDP_YEAR": 2017.75, "tippecanoe:mean:WOE_ID": 17568596.75, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.675, "tippecanoe:mean:LABEL_X": -4.25168475, "tippecanoe:mean:LABEL_Y": 52.79145774999999, "tippecanoe:mean:NE_ID": 1159320756.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.114638 ], [ 5.537109, 55.727110 ], [ 2.021484, 45.213004 ], [ -12.392578, 40.847060 ], [ -27.509766, 46.739861 ], [ -29.882812, 58.031372 ], [ -10.458984, 63.114638 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "80effffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.628906, -62.512318 ], [ -7.119141, -66.196009 ], [ 16.523438, -76.142958 ], [ -34.453125, -87.364326 ], [ -85.869141, -76.163993 ], [ -62.226562, -66.196009 ], [ -34.628906, -62.512318 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8083fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 16, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 35568916, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 49, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 117133, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 93699337, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 93699337, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 15, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 34, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 45.831388, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 2.333, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -9.316601, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 4637283090, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 8892229, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 29283.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.25, "tippecanoe:mean:WOE_ID_EH": 23424834.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 12.25, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 11.457847, "tippecanoe:mean:LABEL_Y": -2.32915025, "tippecanoe:mean:NE_ID": 1159320772.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.790897 ], [ 21.357422, -3.337954 ], [ 16.259766, -14.604847 ], [ 4.570312, -15.284185 ], [ -0.791016, -5.878332 ], [ 3.955078, 3.951941 ], [ 14.589844, 5.790897 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "805bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.890625, 24.766785 ], [ 184.570312, 15.284185 ], [ 179.208984, 5.878332 ], [ 168.310547, 4.477856 ], [ 160.751953, 12.211180 ], [ 164.443359, 22.998852 ], [ 177.890625, 24.766785 ] ] ], [ [ [ -182.109375, 24.766785 ], [ -175.429688, 15.284185 ], [ -180.791016, 5.878332 ], [ -191.689453, 4.477856 ], [ -199.248047, 12.211180 ], [ -195.556641, 22.998852 ], [ -182.109375, 24.766785 ] ] ] ] } } +{ "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": "8081fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "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": "806dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 88823, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 44411.5, "tippecanoe:min:GDP_MD": 27022, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -172.96804600000002, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -86.48402300000001, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:sum:LABEL_Y": 23.750470999999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 11.875235499999999, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:max:LABEL_Y": 13.685371, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 7.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 2318641778, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320889, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:sum:POP_EST": 11501114, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 5750557, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:max:POP_EST": 6453553, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849598, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424799, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:max:WOE_ID": 23424807, "tippecanoe:sum:WOE_ID_EH": 46849598, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424799, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:max:WOE_ID_EH": 23424807, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.064453, 19.228177 ], [ -85.605469, 13.838080 ], [ -84.814453, 2.547988 ], [ -95.097656, -4.390229 ], [ -105.205078, 0.878872 ], [ -106.523438, 12.125264 ], [ -96.064453, 19.228177 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "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": "8061fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 89650, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 44825, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 154.212377, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 77.1061885, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_Y": 11.755538, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 5.877769, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2.5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 2318642078, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321039, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:sum:POP_EST": 22333953, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 11166976.5, "tippecanoe:min:POP_EST": 530953, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -97, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 46849677, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID_EH": 46849677, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 22.431340 ], [ 85.429688, 16.720385 ], [ 84.902344, 4.390229 ], [ 74.794922, -0.878872 ], [ 66.005859, 5.266008 ], [ 65.742188, 16.130262 ], [ 74.970703, 22.431340 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "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": "8037fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.017578, 43.452919 ], [ -138.427734, 41.442726 ], [ -134.121094, 31.278551 ], [ -142.734375, 22.917923 ], [ -156.093750, 24.686952 ], [ -161.630859, 35.029996 ], [ -153.017578, 43.452919 ] ] ] } } +{ "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": "8051fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 31.278551 ], [ -121.376953, 28.690588 ], [ -118.476562, 16.551962 ], [ -127.089844, 8.928487 ], [ -138.427734, 11.264612 ], [ -142.734375, 22.917923 ], [ -134.121094, 31.278551 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "806dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 6453553, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 11501114, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 27022, "tippecanoe:sum:GDP_MD": 88823, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424807, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 46849598, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424807, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 46849598, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -172.96804600000002, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 13.685371, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 23.750470999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 2318641778, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 5750557, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44411.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424799, "tippecanoe:mean:WOE_ID_EH": 23424799, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -86.48402300000001, "tippecanoe:mean:LABEL_Y": 11.875235499999999, "tippecanoe:mean:NE_ID": 1159320889, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.064453, 19.228177 ], [ -85.605469, 13.838080 ], [ -84.814453, 2.547988 ], [ -95.097656, -4.390229 ], [ -105.205078, 0.878872 ], [ -106.523438, 12.125264 ], [ -96.064453, 19.228177 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "801dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.658203, 59.175928 ], [ -128.935547, 50.176898 ], [ -138.427734, 41.442726 ], [ -153.017578, 43.452919 ], [ -157.324219, 54.007769 ], [ -139.658203, 59.175928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8029fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.935547, 50.176898 ], [ -112.763672, 47.989922 ], [ -110.214844, 36.809285 ], [ -121.376953, 28.690588 ], [ -134.121094, 31.278551 ], [ -138.427734, 41.442726 ], [ -128.935547, 50.176898 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "805dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 24.686952 ], [ -142.734375, 22.917923 ], [ -138.427734, 11.264612 ], [ -146.337891, 1.669686 ], [ -158.642578, 3.337954 ], [ -163.740234, 14.604847 ], [ -156.093750, 24.686952 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8049fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.214844, 36.809285 ], [ -96.679688, 31.653381 ], [ -96.064453, 19.228177 ], [ -106.523438, 12.125264 ], [ -118.476562, 16.551962 ], [ -121.376953, 28.690588 ], [ -110.214844, 36.809285 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:max:POP_EST": 63918, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 4, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8057fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:max:POP_EST": 549935, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "803bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 40.979898 ], [ -40.341797, 38.754083 ], [ -37.177734, 26.667096 ], [ -46.142578, 18.895893 ], [ -57.216797, 21.779905 ], [ -62.050781, 31.877558 ], [ -54.843750, 40.979898 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "801bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:max:GDP_MD": 215, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:max:POP_EST": 5997, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 5, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 3, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "804dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 9, "tippecanoe:sum:ABBREV_LEN": 65, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 7.222222222222222, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 6, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 228193, "tippecanoe:count:GDP_MD": 9, "tippecanoe:mean:GDP_MD": 25354.777777777777, "tippecanoe:min:GDP_MD": 240, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:sum:GDP_YEAR": 18144, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -591, "tippecanoe:count:HOMEPART": 9, "tippecanoe:mean:HOMEPART": -65.66666666666667, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 53, "tippecanoe:count:LABELRANK": 9, "tippecanoe:mean:LABELRANK": 5.888888888888889, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 10, "tippecanoe:sum:LABEL_X": -625.840964, "tippecanoe:count:LABEL_X": 9, "tippecanoe:mean:LABEL_X": -69.53788488888888, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:max:LABEL_X": -63.049399, "tippecanoe:sum:LABEL_Y": 178.99401999999999, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:mean:LABEL_Y": 19.888224444444444, "tippecanoe:min:LABEL_Y": 17.746706, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:LEVEL": 9, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 155, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:mean:LONG_LEN": 17.22222222222222, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:mean:MAPCOLOR13": 3.7777777777777779, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 38, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:mean:MAPCOLOR7": 4.222222222222222, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 36, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 40, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR9": 4.444444444444445, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 86, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:mean:MAX_LABEL": 9.555555555555556, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 41.5, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:mean:MIN_LABEL": 4.611111111111111, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:mean:MIN_ZOOM": 0.5555555555555556, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 118, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:mean:NAME_LEN": 13.11111111111111, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 10433887195, "tippecanoe:count:NE_ID": 9, "tippecanoe:mean:NE_ID": 1159320799.4444445, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:sum:POP_EST": 25804065, "tippecanoe:count:POP_EST": 9, "tippecanoe:mean:POP_EST": 2867118.3333333337, "tippecanoe:min:POP_EST": 6000, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:sum:POP_RANK": 85, "tippecanoe:count:POP_RANK": 9, "tippecanoe:mean:POP_RANK": 9.444444444444445, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 18170, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:mean:POP_YEAR": 2018.888888888889, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -584, "tippecanoe:count:TINY": 9, "tippecanoe:mean:TINY": -64.88888888888889, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 220016468, "tippecanoe:count:WOE_ID": 9, "tippecanoe:mean:WOE_ID": 24446274.222222225, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:sum:WOE_ID_EH": 220016468, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:mean:WOE_ID_EH": 24446274.222222225, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:sum:scalerank": 18, "tippecanoe:count:scalerank": 9, "tippecanoe:mean:scalerank": 2, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.050781, 31.877558 ], [ -57.216797, 21.779905 ], [ -65.742188, 14.519780 ], [ -76.025391, 19.394068 ], [ -74.619141, 30.221102 ], [ -62.050781, 31.877558 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8055fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 7, "tippecanoe:sum:ABBREV_LEN": 33, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4.714285714285714, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 53830, "tippecanoe:count:GDP_MD": 7, "tippecanoe:mean:GDP_MD": 7690, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:HOMEPART": 7, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:LABELRANK": 7, "tippecanoe:mean:LABELRANK": 4.142857142857143, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -85.281791, "tippecanoe:count:LABEL_X": 7, "tippecanoe:mean:LABEL_X": -12.183113, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:max:LABEL_X": -9.460379, "tippecanoe:sum:LABEL_Y": 86.213762, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:mean:LABEL_Y": 12.316251714285715, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:LEVEL": 7, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:mean:LONG_LEN": 9.285714285714287, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 36, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:mean:MAPCOLOR13": 5.142857142857143, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR7": 2.5714285714285718, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 28, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 62, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:mean:MAX_LABEL": 8.857142857142858, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 26.7, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:mean:MIN_LABEL": 3.814285714285714, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 61, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:mean:NAME_LEN": 8.714285714285714, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 8115246975, "tippecanoe:count:NE_ID": 7, "tippecanoe:mean:NE_ID": 1159320996.4285715, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:sum:POP_EST": 50612523, "tippecanoe:count:POP_EST": 7, "tippecanoe:mean:POP_EST": 7230360.428571428, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:sum:POP_RANK": 89, "tippecanoe:count:POP_RANK": 7, "tippecanoe:mean:POP_RANK": 12.714285714285714, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -693, "tippecanoe:count:TINY": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 163974246, "tippecanoe:count:WOE_ID": 7, "tippecanoe:mean:WOE_ID": 23424892.285714289, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:sum:WOE_ID_EH": 163974246, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:mean:WOE_ID_EH": 23424892.285714289, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "80e9fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.197266, -52.643063 ], [ -73.564453, -56.218923 ], [ -62.226562, -66.196009 ], [ -85.869141, -76.163993 ], [ -117.685547, -69.380313 ], [ -111.708984, -58.309489 ], [ -92.197266, -52.643063 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80c7fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.814453, -29.075375 ], [ -120.849609, -37.649034 ], [ -126.298828, -49.382373 ], [ -143.876953, -49.781264 ], [ -151.171875, -39.639538 ], [ -142.822266, -29.305561 ], [ -129.814453, -29.075375 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80cffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 0, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "80d5fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -166.728516, -37.509726 ], [ -151.171875, -39.639538 ], [ -143.876953, -49.781264 ], [ -154.951172, -58.401712 ], [ -174.462891, -55.727110 ], [ -177.978516, -45.213004 ], [ -166.728516, -37.509726 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80b5fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -161.630859, -16.467695 ], [ -148.798828, -18.229351 ], [ -142.822266, -29.305561 ], [ -151.171875, -39.639538 ], [ -166.728516, -37.509726 ], [ -170.595703, -25.641526 ], [ -161.630859, -16.467695 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80e3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.298828, -49.382373 ], [ -111.708984, -58.309489 ], [ -117.685547, -69.380313 ], [ -148.183594, -68.942607 ], [ -154.951172, -58.401712 ], [ -143.876953, -49.781264 ], [ -126.298828, -49.382373 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80b7fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.570312, -16.720385 ], [ -82.880859, -22.268764 ], [ -81.738281, -33.651208 ], [ -93.251953, -40.313043 ], [ -106.435547, -33.724340 ], [ -105.029297, -22.431340 ], [ -94.570312, -16.720385 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80d3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.435547, -33.724340 ], [ -93.251953, -40.313043 ], [ -92.197266, -52.643063 ], [ -111.708984, -58.309489 ], [ -126.298828, -49.382373 ], [ -120.849609, -37.649034 ], [ -106.435547, -33.724340 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "80b1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.257812, -16.130262 ], [ -105.029297, -22.431340 ], [ -106.435547, -33.724340 ], [ -120.849609, -37.649034 ], [ -129.814453, -29.075375 ], [ -125.332031, -19.145168 ], [ -114.257812, -16.130262 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8091fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.277344, -1.406109 ], [ -113.994141, -5.266008 ], [ -114.257812, -16.130262 ], [ -125.332031, -19.145168 ], [ -131.308594, -9.882275 ], [ -124.277344, -1.406109 ] ] ] } } -, -{ "type": "Feature", "id": 12345, "properties": { "bin": "80a9fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 3, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 728045, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 242681.66666666667, "tippecanoe:min:GDP_MD": 282, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:sum:GDP_YEAR": 6050, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2016.6666666666668, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": -195.23080400000004, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": -65.07693466666668, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_Y": -123.261843, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -41.087281, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 41, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 13.666666666666666, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8.2, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 2.733333333333333, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 3477961535, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320511.6666668, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:sum:POP_EST": 63894148, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 21298049.333333333, "tippecanoe:min:POP_EST": 3398, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:sum:POP_RANK": 33, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6054, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274343, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424781, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID_EH": 70274343, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424781, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 1 }, "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": "80b3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.246094, -15.029686 ], [ -61.171875, -19.228177 ], [ -59.501953, -29.916852 ], [ -69.345703, -37.160317 ], [ -81.738281, -33.651208 ], [ -82.880859, -22.268764 ], [ -72.246094, -15.029686 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80c5fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.529297, -27.916767 ], [ -25.224609, -31.877558 ], [ -21.621094, -43.897892 ], [ -34.628906, -51.124213 ], [ -48.251953, -45.274886 ], [ -47.724609, -34.307144 ], [ -37.529297, -27.916767 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80c3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.501953, -29.916852 ], [ -47.724609, -34.307144 ], [ -48.251953, -45.274886 ], [ -63.808594, -47.338823 ], [ -69.345703, -37.160317 ], [ -59.501953, -29.916852 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80a5fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.234375, -8.667918 ], [ -19.248047, -12.211180 ], [ -15.556641, -22.998852 ], [ -25.224609, -31.877558 ], [ -37.529297, -27.916767 ], [ -39.814453, -16.804541 ], [ -30.234375, -8.667918 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "800bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 76.163993 ], [ 117.773438, 66.196009 ], [ 106.435547, 56.218923 ], [ 87.802734, 52.643063 ], [ 68.291016, 58.309489 ], [ 62.314453, 69.380313 ], [ 94.130859, 76.163993 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8025fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8011fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.314453, 69.380313 ], [ 68.291016, 58.309489 ], [ 53.701172, 49.382373 ], [ 36.123047, 49.781264 ], [ 25.048828, 58.401712 ], [ 31.816406, 68.942607 ], [ 62.314453, 69.380313 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "803dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 335742, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 111914, "tippecanoe:min:GDP_MD": 2530, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 263.36517100000006, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 87.78839033333334, "tippecanoe:min:LABEL_X": 83.639914, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:sum:LABEL_Y": 80.049566, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 26.683188666666667, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:max:LABEL_Y": 28.297925, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 3477961981, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320660.3333333, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:sum:POP_EST": 192417963, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 64139321, "tippecanoe:min:POP_EST": 763092, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274440, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424813.333333333, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:max:WOE_ID": 23424911, "tippecanoe:sum:WOE_ID_EH": 70274440, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424813.333333333, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:max:WOE_ID_EH": 23424911, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.748047, 40.313043 ], [ 98.261719, 33.651208 ], [ 97.119141, 22.268764 ], [ 85.429688, 16.720385 ], [ 74.970703, 22.431340 ], [ 73.564453, 33.724340 ], [ 86.748047, 40.313043 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "802dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 16, "tippecanoe:sum:ABBREV_LEN": 68, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:mean:ADM0_DIF": 0.125, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 2354758, "tippecanoe:count:GDP_MD": 16, "tippecanoe:mean:GDP_MD": 147172.375, "tippecanoe:min:GDP_MD": 280, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:sum:GDP_YEAR": 32280, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -84, "tippecanoe:count:HOMEPART": 16, "tippecanoe:mean:HOMEPART": -5.25, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:LABELRANK": 16, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": 663.980747, "tippecanoe:count:LABEL_X": 16, "tippecanoe:mean:LABEL_X": 41.4987966875, "tippecanoe:min:LABEL_X": 33.084182, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_Y": 552.20492, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:mean:LABEL_Y": 34.5128075, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:LEVEL": 16, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 138, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:mean:LONG_LEN": 8.625, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:mean:MAPCOLOR13": 0.125, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 53, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:mean:MAPCOLOR7": 3.3125, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:mean:MAPCOLOR8": 2.8125, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 55, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:mean:MAPCOLOR9": 3.4375, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 142.7, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:mean:MAX_LABEL": 8.91875, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 66.9, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:mean:MIN_LABEL": 4.18125, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:mean:MIN_ZOOM": 0.4375, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 132, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 18549133226, "tippecanoe:count:NE_ID": 16, "tippecanoe:mean:NE_ID": 1159320826.625, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:max:NE_ID": 1159321309, "tippecanoe:sum:POP_EST": 227966087, "tippecanoe:count:POP_EST": 16, "tippecanoe:mean:POP_EST": 14247880.4375, "tippecanoe:min:POP_EST": 7850, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:sum:POP_RANK": 196, "tippecanoe:count:POP_RANK": 16, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 32296, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1379, "tippecanoe:count:TINY": 16, "tippecanoe:mean:TINY": -86.1875, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 281097956, "tippecanoe:count:WOE_ID": 16, "tippecanoe:mean:WOE_ID": 17568622.25, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424972, "tippecanoe:sum:WOE_ID_EH": 327948125, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:mean:WOE_ID_EH": 20496757.8125, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424995, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:scalerank": 16, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 49.781264 ], [ 53.701172, 49.382373 ], [ 59.150391, 37.649034 ], [ 50.185547, 29.075375 ], [ 37.177734, 29.305561 ], [ 28.828125, 39.639538 ], [ 36.123047, 49.781264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "801ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 28, "tippecanoe:sum:ABBREV_LEN": 126, "tippecanoe:count:ABBREV_LEN": 28, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -2772, "tippecanoe:count:ADM0_A3_UN": 28, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -2772, "tippecanoe:count:ADM0_A3_WB": 28, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 28, "tippecanoe:mean:ADM0_DIF": 0.03571428571428571, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 28, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 10714600, "tippecanoe:count:GDP_MD": 28, "tippecanoe:mean:GDP_MD": 382664.28571428576, "tippecanoe:min:GDP_MD": 5542, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:sum:GDP_YEAR": 56531, "tippecanoe:count:GDP_YEAR": 28, "tippecanoe:mean:GDP_YEAR": 2018.9642857142858, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 28, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 28, "tippecanoe:count:HOMEPART": 28, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:LABELRANK": 28, "tippecanoe:mean:LABELRANK": 4.535714285714286, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 520.222516, "tippecanoe:count:LABEL_X": 28, "tippecanoe:mean:LABEL_X": 18.579375571428576, "tippecanoe:min:LABEL_X": 4.800448, "tippecanoe:max:LABEL_X": 34.508268, "tippecanoe:sum:LABEL_Y": 1329.7201530000003, "tippecanoe:count:LABEL_Y": 28, "tippecanoe:mean:LABEL_Y": 47.49000546428572, "tippecanoe:min:LABEL_Y": 39.345388, "tippecanoe:max:LABEL_Y": 57.066872, "tippecanoe:sum:LEVEL": 56, "tippecanoe:count:LEVEL": 28, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 240, "tippecanoe:count:LONG_LEN": 28, "tippecanoe:mean:LONG_LEN": 8.571428571428572, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 196, "tippecanoe:count:MAPCOLOR13": 28, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 89, "tippecanoe:count:MAPCOLOR7": 28, "tippecanoe:mean:MAPCOLOR7": 3.1785714285714286, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 97, "tippecanoe:count:MAPCOLOR8": 28, "tippecanoe:mean:MAPCOLOR8": 3.4642857142857146, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 101, "tippecanoe:count:MAPCOLOR9": 28, "tippecanoe:mean:MAPCOLOR9": 3.607142857142857, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 241.5, "tippecanoe:count:MAX_LABEL": 28, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 108.10000000000001, "tippecanoe:count:MIN_LABEL": 28, "tippecanoe:mean:MIN_LABEL": 3.860714285714286, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 28, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 227, "tippecanoe:count:NAME_LEN": 28, "tippecanoe:mean:NAME_LEN": 8.107142857142858, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 32460984236, "tippecanoe:count:NE_ID": 28, "tippecanoe:mean:NE_ID": 1159320865.5714286, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:sum:POP_EST": 437433879, "tippecanoe:count:POP_EST": 28, "tippecanoe:mean:POP_EST": 15622638.535714286, "tippecanoe:min:POP_EST": 38019, "tippecanoe:max:POP_EST": 83429615, "tippecanoe:sum:POP_RANK": 361, "tippecanoe:count:POP_RANK": 28, "tippecanoe:mean:POP_RANK": 12.892857142857143, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 56532, "tippecanoe:count:POP_YEAR": 28, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 28, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -2563, "tippecanoe:count:TINY": 28, "tippecanoe:mean:TINY": -91.53571428571429, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 605691022, "tippecanoe:count:WOE_ID": 28, "tippecanoe:mean:WOE_ID": 21631822.214285714, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424976, "tippecanoe:sum:WOE_ID_EH": 655150221, "tippecanoe:count:WOE_ID_EH": 28, "tippecanoe:mean:WOE_ID_EH": 23398222.17857143, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 28, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, 58.401712 ], [ 36.123047, 49.781264 ], [ 28.828125, 39.639538 ], [ 13.271484, 37.509726 ], [ 2.021484, 45.213004 ], [ 5.537109, 55.727110 ], [ 25.048828, 58.401712 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8021fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 8, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 554279, "tippecanoe:count:GDP_MD": 8, "tippecanoe:mean:GDP_MD": 69284.875, "tippecanoe:min:GDP_MD": 15, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:sum:GDP_YEAR": 16140, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:HOMEPART": 8, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:LABELRANK": 8, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 555.3665579999999, "tippecanoe:count:LABEL_X": 8, "tippecanoe:mean:LABEL_X": 69.42081974999999, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:max:LABEL_X": 77.129553, "tippecanoe:sum:LABEL_Y": 315.427716, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:mean:LABEL_Y": 39.4284645, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:LEVEL": 8, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:min:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 93, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:mean:LONG_LEN": 11.625, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": -64, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 43, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:mean:MAPCOLOR9": 5.375, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 65, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:mean:MAX_LABEL": 8.125, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 30.9, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:mean:MIN_LABEL": 3.8625, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:sum:MIN_ZOOM": 10, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 82, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:mean:NAME_LEN": 10.25, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:sum:NE_ID": 9274568056, "tippecanoe:count:NE_ID": 8, "tippecanoe:mean:NE_ID": 1159321007, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:sum:POP_EST": 322521745, "tippecanoe:count:POP_EST": 8, "tippecanoe:mean:POP_EST": 40315218.125, "tippecanoe:min:POP_EST": 6000, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:sum:POP_RANK": 99, "tippecanoe:count:POP_RANK": 8, "tippecanoe:mean:POP_RANK": 12.375, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 16136, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -688, "tippecanoe:count:TINY": 8, "tippecanoe:mean:TINY": -86, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 140549214, "tippecanoe:count:WOE_ID": 8, "tippecanoe:mean:WOE_ID": 17568651.75, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:sum:WOE_ID_EH": 184044442, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:mean:WOE_ID_EH": 23005555.25, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.291016, 58.309489 ], [ 87.802734, 52.643063 ], [ 86.748047, 40.313043 ], [ 73.564453, 33.724340 ], [ 59.150391, 37.649034 ], [ 53.701172, 49.382373 ], [ 68.291016, 58.309489 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8053fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 7, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5.285714285714286, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 333548, "tippecanoe:count:GDP_MD": 7, "tippecanoe:mean:GDP_MD": 47649.71428571428, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 175837, "tippecanoe:sum:GDP_YEAR": 14119, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:HOMEPART": 7, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 33, "tippecanoe:count:LABELRANK": 7, "tippecanoe:mean:LABELRANK": 4.714285714285714, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 8, "tippecanoe:sum:LABEL_X": 301.976339, "tippecanoe:count:LABEL_X": 7, "tippecanoe:mean:LABEL_X": 43.139477, "tippecanoe:min:LABEL_X": 33.673428, "tippecanoe:max:LABEL_X": 51.143509, "tippecanoe:sum:LABEL_Y": 118.394225, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:mean:LABEL_Y": 16.913460714285717, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:max:LABEL_Y": 26.055972, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:LEVEL": 7, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:mean:MAPCOLOR13": 7.571428571428571, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR7": 2.2857142857142858, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR9": 2.4285714285714286, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 61, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:mean:MAX_LABEL": 8.714285714285714, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 29.5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:mean:MIN_LABEL": 4.214285714285714, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:sum:MIN_ZOOM": 11, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:mean:MIN_ZOOM": 1.5714285714285715, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 8685559699, "tippecanoe:count:NE_ID": 7, "tippecanoe:mean:NE_ID": 1240794242.7142857, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:sum:POP_EST": 128702884, "tippecanoe:count:POP_EST": 7, "tippecanoe:mean:POP_EST": 18386126.285714289, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:sum:POP_RANK": 79, "tippecanoe:count:POP_RANK": 7, "tippecanoe:mean:POP_RANK": 11.285714285714287, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 14129, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:mean:POP_YEAR": 2018.4285714285714, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -592, "tippecanoe:count:TINY": 7, "tippecanoe:mean:TINY": -84.57142857142857, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 117123896, "tippecanoe:count:WOE_ID": 7, "tippecanoe:mean:WOE_ID": 16731985.142857144, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424930, "tippecanoe:sum:WOE_ID_EH": 117123896, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:mean:WOE_ID_EH": 16731985.142857144, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424930, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 7, "tippecanoe:mean:scalerank": 0.7142857142857143, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 29.305561 ], [ 50.185547, 29.075375 ], [ 54.667969, 19.145168 ], [ 48.691406, 9.882275 ], [ 37.880859, 8.928487 ], [ 31.201172, 18.229351 ], [ 37.177734, 29.305561 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "803ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 389095, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 64849.166666666664, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:max:GDP_MD": 303092, "tippecanoe:sum:GDP_YEAR": 12113, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 136.580237, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 22.763372833333336, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:max:LABEL_X": 35.291341, "tippecanoe:sum:LABEL_Y": 143.04638999999998, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 23.841064999999998, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 49.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.200000000000001, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.1166666666666669, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 1.1666666666666668, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 6955926156, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159321026, "tippecanoe:min:NE_ID": 1159320575, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:sum:POP_EST": 187646861, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 31274476.833333333, "tippecanoe:min:POP_EST": 502653, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -492, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -82, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 121988700, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 20331450, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:sum:WOE_ID_EH": 145413742, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 24235623.666666669, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 37.177734, 29.305561 ], [ 31.201172, 18.229351 ], [ 18.369141, 16.467695 ], [ 9.404297, 25.641526 ], [ 13.271484, 37.509726 ], [ 28.828125, 39.639538 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8043fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 73.564453, 33.724340 ], [ 74.970703, 22.431340 ], [ 65.742188, 16.130262 ], [ 54.667969, 19.145168 ], [ 50.185547, 29.075375 ], [ 59.150391, 37.649034 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8063fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.667969, 19.145168 ], [ 65.742188, 16.130262 ], [ 66.005859, 5.266008 ], [ 55.722656, 1.406109 ], [ 48.691406, 9.882275 ], [ 54.667969, 19.145168 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8031fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1686739, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 843369.5, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 254.57402, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 127.28701, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:sum:LABEL_Y": 76.27017599999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 38.135087999999999, "tippecanoe:min:LABEL_Y": 36.384924, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 5.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 2.75, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 2318642166, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321083, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:sum:POP_EST": 77375259, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 38687629.5, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849733, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424866.5, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:max:WOE_ID": 23424868, "tippecanoe:sum:WOE_ID_EH": 46849733, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424866.5, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:max:WOE_ID_EH": 23424868, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8015fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.773438, 66.196009 ], [ 145.371094, 62.512318 ], [ 145.371094, 51.124213 ], [ 131.748047, 45.274886 ], [ 116.191406, 47.338823 ], [ 106.435547, 56.218923 ], [ 117.773438, 66.196009 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "802ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.371094, 51.124213 ], [ 158.378906, 43.897892 ], [ 154.775391, 31.877558 ], [ 142.470703, 27.916767 ], [ 132.275391, 34.307144 ], [ 131.748047, 45.274886 ], [ 145.371094, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "804bfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6208769, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3104384.5, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 259.310374, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 129.655187, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:sum:LABEL_Y": 59.794946, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 29.897473, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 6.2, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.1, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 2318642272, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321136, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:sum:POP_EST": 149833309, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 74916654.5, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849827, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424913.5, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:sum:WOE_ID_EH": 46849827, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424913.5, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.275391, 34.307144 ], [ 142.470703, 27.916767 ], [ 140.185547, 16.804541 ], [ 128.232422, 12.382928 ], [ 118.828125, 19.228177 ], [ 120.498047, 29.916852 ], [ 132.275391, 34.307144 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8041fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 645805, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 215268.33333333335, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 322.01897299999998, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 107.33965766666666, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:sum:LABEL_Y": 63.59606600000001, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 21.19868866666667, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 7.666666666666667, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 3477962901, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320967, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:sum:POP_EST": 111138961, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 37046320.333333339, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -196, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 71715554, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23905184.666666669, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:sum:WOE_ID_EH": 71715554, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23905184.666666669, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 37.160317 ], [ 120.498047, 29.916852 ], [ 118.828125, 19.228177 ], [ 107.753906, 15.029686 ], [ 97.119141, 22.268764 ], [ 98.261719, 33.651208 ], [ 110.654297, 37.160317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "804ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:min:POP_EST": 57216, "tippecanoe:max:POP_EST": 167294, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 5, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": 2.5, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.775391, 31.877558 ], [ 164.443359, 22.998852 ], [ 160.751953, 12.211180 ], [ 149.765625, 8.667918 ], [ 140.185547, 16.804541 ], [ 142.470703, 27.916767 ], [ 154.775391, 31.877558 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80e1fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 16, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 70, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 140, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -97, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 4, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 5 }, "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": "80cdfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.320312, -31.653381 ], [ 95.449219, -37.090240 ], [ 98.085938, -48.283193 ], [ 81.474609, -55.229023 ], [ 67.236328, -47.989922 ], [ 69.785156, -36.809285 ], [ 83.320312, -31.653381 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80e5fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, -48.283193 ], [ 116.806641, -50.792047 ], [ 128.408203, -61.312452 ], [ 113.115234, -72.208678 ], [ 79.189453, -67.542167 ], [ 81.474609, -55.229023 ], [ 98.085938, -48.283193 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80a3fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 29327, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 9775.666666666666, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 147.58818300000002, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 49.19606100000001, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_Y": -50.655477000000008, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -16.885159, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 8.666666666666666, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 3477962651, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320883.6666668, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:sum:POP_EST": 29085904, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 9695301.333333334, "tippecanoe:min:POP_EST": 850886, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -95, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -31.666666666666669, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 70274563, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424854.333333333, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID_EH": 70274563, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424854.333333333, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 2, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, -8.928487 ], [ 61.523438, -16.551962 ], [ 58.623047, -28.690588 ], [ 45.878906, -31.278551 ], [ 37.265625, -22.917923 ], [ 41.572266, -11.264612 ], [ 52.910156, -8.928487 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80affffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.394531, -13.838080 ], [ 103.974609, -19.394068 ], [ 105.380859, -30.221102 ], [ 95.449219, -37.090240 ], [ 83.320312, -31.653381 ], [ 83.935547, -19.228177 ], [ 94.394531, -13.838080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8097fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 89058, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 14843, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:max:GDP_MD": 23309, "tippecanoe:sum:GDP_YEAR": 12114, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 181.86301600000003, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 30.310502666666669, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_Y": -86.337881, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": -14.389646833333332, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 45, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 51, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 20.5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.4166666666666667, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 45, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 6955925882, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320980.3333333, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:sum:POP_EST": 95335558, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 15889259.666666666, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -594, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 140549327, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424887.833333333, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:sum:WOE_ID_EH": 140549327, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424887.833333333, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -1.669686 ], [ 41.572266, -11.264612 ], [ 37.265625, -22.917923 ], [ 23.906250, -24.686952 ], [ 16.259766, -14.604847 ], [ 21.357422, -3.337954 ], [ 33.662109, -1.669686 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80bdfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 351431, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 351431, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 23.665734, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 23.665734, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:max:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_Y": -29.708776, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -29.708776, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:max:LABEL_Y": -29.708776, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 1159321431, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:sum:POP_EST": 58558270, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 58558270, "tippecanoe:min:POP_EST": 58558270, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424942, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424942, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:max:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID_EH": 23424942, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424942, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:max:WOE_ID_EH": 23424942, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "80cbfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, -28.690588 ], [ 69.785156, -36.809285 ], [ 67.236328, -47.989922 ], [ 51.064453, -50.176898 ], [ 41.572266, -41.442726 ], [ 45.878906, -31.278551 ], [ 58.623047, -28.690588 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80abfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.476562, -12.125264 ], [ 83.935547, -19.228177 ], [ 83.320312, -31.653381 ], [ 69.785156, -36.809285 ], [ 58.623047, -28.690588 ], [ 61.523438, -16.551962 ], [ 73.476562, -12.125264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80a7fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.257812, -14.519780 ], [ 122.783203, -21.779905 ], [ 117.949219, -31.877558 ], [ 105.380859, -30.221102 ], [ 103.974609, -19.394068 ], [ 114.257812, -14.519780 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80d9fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.658203, -38.754083 ], [ 152.490234, -46.739861 ], [ 150.117188, -58.031372 ], [ 128.408203, -61.312452 ], [ 116.806641, -50.792047 ], [ 125.156250, -40.979898 ], [ 139.658203, -38.754083 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80bffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.390625, -22.024546 ], [ 167.080078, -28.536275 ], [ 167.607422, -40.847060 ], [ 152.490234, -46.739861 ], [ 139.658203, -38.754083 ], [ 142.822266, -26.667096 ], [ 155.390625, -22.024546 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80c9fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.380859, -30.221102 ], [ 117.949219, -31.877558 ], [ 125.156250, -40.979898 ], [ 116.806641, -50.792047 ], [ 98.085938, -48.283193 ], [ 95.449219, -37.090240 ], [ 105.380859, -30.221102 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "80b9fffffffffff", "felt:h3_level": 0, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.857422, -18.895893 ], [ 142.822266, -26.667096 ], [ 139.658203, -38.754083 ], [ 125.156250, -40.979898 ], [ 117.949219, -31.877558 ], [ 122.783203, -21.779905 ], [ 133.857422, -18.895893 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "809ffffffffffff", "felt:h3_level": 0, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 13293, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 4431, "tippecanoe:min:GDP_MD": 934, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:sum:GDP_YEAR": 6054, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 491.163234, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 163.721078, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:max:LABEL_X": 166.908762, "tippecanoe:sum:LABEL_Y": -44.465775, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -14.821925, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 11.666666666666666, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 11.6, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.8666666666666669, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 10.333333333333334, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 3477963311, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159321103.6666668, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:sum:POP_EST": 1257505, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 419168.3333333333, "tippecanoe:min:POP_EST": 287800, "tippecanoe:max:POP_EST": 669823, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 10.333333333333334, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -196, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 70274576, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424858.666666669, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:sum:WOE_ID_EH": 70274576, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424858.666666669, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 1 }, "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": "8061fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 22333953, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 89650, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 46849677, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 46849677, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 154.212377, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 11.755538, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 2318642078, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 2.5, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 11166976.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44825, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 77.1061885, "tippecanoe:mean:LABEL_Y": 5.877769, "tippecanoe:mean:NE_ID": 1159321039, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 22.431340 ], [ 85.429688, 16.720385 ], [ 84.902344, 4.390229 ], [ 74.794922, -0.878872 ], [ 66.005859, 5.266008 ], [ 65.742188, 16.130262 ], [ 74.970703, 22.431340 ] ] ] } } ] } ] } 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 d1f1a5543..635d5f57c 100644 --- a/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json +++ b/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json @@ -1,3435 +1,143 @@ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "bin": "827b97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.711914, 2.635789 ], [ 55.722656, 1.450040 ], [ 55.327148, 0.043945 ], [ 53.920898, -0.175781 ], [ 52.910156, 1.054628 ], [ 53.305664, 2.460181 ], [ 54.711914, 2.635789 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820197fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 27, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 23, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 106631, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 276430, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 35, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 3855, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 6622, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 10075, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 149741898, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 149741898, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 18, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 91, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 20, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -395, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 25, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -61.790612, "tippecanoe:min:LABEL_X": -64.779172, "tippecanoe:sum:LABEL_X": -316.44404499999998, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 18.426606, "tippecanoe:min:LABEL_Y": 16.73717, "tippecanoe:sum:LABEL_Y": 88.344033, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 5796603821, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.8, "tippecanoe:mean:MAPCOLOR9": 5.4, "tippecanoe:mean:MAPCOLOR13": 4.6, "tippecanoe:mean:POP_EST": 55286, "tippecanoe:mean:POP_RANK": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1324.4, "tippecanoe:mean:GDP_YEAR": 2015, "tippecanoe:mean:WOE_ID": 29948379.6, "tippecanoe:mean:WOE_ID_EH": 29948379.6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.8, "tippecanoe:mean:LONG_LEN": 18.2, "tippecanoe:mean:ABBREV_LEN": 7.8, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -79, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.8, "tippecanoe:mean:LABEL_X": -63.28880899999999, "tippecanoe:mean:LABEL_Y": 17.6688066, "tippecanoe:mean:NE_ID": 1159320764.2, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 72.369105 ], [ 63.500977, 72.087432 ], [ 65.302734, 70.539543 ], [ 62.358398, 69.395783 ], [ 57.832031, 69.672358 ], [ 55.546875, 71.102543 ], [ 58.227539, 72.369105 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82015ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.130859, 80.788795 ], [ 13.886719, 80.349631 ], [ 15.688477, 78.801980 ], [ 9.887695, 77.832589 ], [ 2.285156, 78.197578 ], [ -1.406250, 79.592349 ], [ 4.130859, 80.788795 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82106ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 36, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 22, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 71808, "tippecanoe:sum:POP_EST": 3411314, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 70, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 582, "tippecanoe:sum:GDP_MD": 41876, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424754, "tippecanoe:sum:WOE_ID": 163974191, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 163974191, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 78, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 92, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 35, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -284, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 31, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 65.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -61.344958, "tippecanoe:sum:LABEL_X": -419.001901, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 15.458829, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 75.87001300000002, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320449, "tippecanoe:sum:NE_ID": 8115246839, "tippecanoe:mean:scalerank": 2.142857142857143, "tippecanoe:mean:LABELRANK": 5.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.142857142857143, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6.428571428571429, "tippecanoe:mean:POP_EST": 487330.5714285714, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5982.285714285715, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.42857143, "tippecanoe:mean:WOE_ID_EH": 23424884.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.142857142857143, "tippecanoe:mean:LONG_LEN": 13.142857142857143, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -40.57142857142857, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.428571428571429, "tippecanoe:mean:MAX_LABEL": 9.357142857142858, "tippecanoe:mean:LABEL_X": -59.857414428571427, "tippecanoe:mean:LABEL_Y": 10.838573285714288, "tippecanoe:mean:NE_ID": 1159320977, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.832031, 69.672358 ], [ 62.358398, 69.395783 ], [ 63.457031, 67.925140 ], [ 60.424805, 66.757250 ], [ 56.293945, 67.016009 ], [ 54.843750, 68.447662 ], [ 57.832031, 69.672358 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "827497fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 0.131836 ], [ -11.250000, -0.395505 ], [ -10.986328, -1.933227 ], [ -11.953125, -2.943041 ], [ -13.271484, -2.416276 ], [ -13.579102, -0.878872 ], [ -12.524414, 0.131836 ] ] ] } } +{ "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": "82045ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.462891, 73.873717 ], [ 180.834961, 73.849286 ], [ 183.295898, 72.235514 ], [ 180.087891, 70.786910 ], [ 174.770508, 70.801366 ], [ 171.694336, 72.275693 ], [ 174.462891, 73.873717 ] ] ], [ [ [ -185.537109, 73.873717 ], [ -179.165039, 73.849286 ], [ -176.704102, 72.235514 ], [ -179.912109, 70.786910 ], [ -185.229492, 70.801366 ], [ -188.305664, 72.275693 ], [ -185.537109, 73.873717 ] ] ] ] } } +{ "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": "8286dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.607422, 2.240640 ], [ 78.969727, 1.274309 ], [ 78.969727, -0.395505 ], [ 77.563477, -1.098565 ], [ 76.201172, -0.175781 ], [ 76.201172, 1.493971 ], [ 77.607422, 2.240640 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82008ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.892578, 81.634149 ], [ 89.560547, 80.739423 ], [ 88.725586, 78.988187 ], [ 81.210938, 78.143526 ], [ 73.388672, 78.853070 ], [ 71.367188, 80.553733 ], [ 79.892578, 81.634149 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "826527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.403320, 3.030812 ], [ 104.809570, 2.021065 ], [ 104.633789, 0.263671 ], [ 103.051758, -0.483393 ], [ 101.601562, 0.527336 ], [ 101.777344, 2.284551 ], [ 103.403320, 3.030812 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 37861934, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 46639, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424943, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 117124424, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424943, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 117124424, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 46, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 22, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 44, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -9.740299, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -64.057735, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 10.618516, "tippecanoe:sum:LABEL_Y": 71.149136, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321243, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 5796604709, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.2, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 7572386.8, "tippecanoe:mean:POP_RANK": 12.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9327.8, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.8, "tippecanoe:mean:WOE_ID_EH": 23424884.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.4, "tippecanoe:mean:LONG_LEN": 9.2, "tippecanoe:mean:ABBREV_LEN": 4.4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7399999999999999, "tippecanoe:mean:MAX_LABEL": 8.8, "tippecanoe:mean:LABEL_X": -12.811547, "tippecanoe:mean:LABEL_Y": 14.229827199999999, "tippecanoe:mean:NE_ID": 1159320941.8, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.441406, 71.286699 ], [ 86.835938, 70.363091 ], [ 86.660156, 68.688521 ], [ 82.749023, 67.958148 ], [ 78.750000, 68.768235 ], [ 78.222656, 70.407348 ], [ 82.441406, 71.286699 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8282b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.402344, 2.021065 ], [ 18.369141, 0.703107 ], [ 17.666016, -0.834931 ], [ 15.996094, -1.054628 ], [ 15.029297, 0.263671 ], [ 15.732422, 1.757537 ], [ 17.402344, 2.021065 ] ] ] } } +{ "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": "827a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 0.131836 ], [ 37.089844, -1.186439 ], [ 36.518555, -2.811371 ], [ 34.760742, -3.030812 ], [ 33.662109, -1.669686 ], [ 34.277344, -0.087891 ], [ 35.991211, 0.131836 ] ] ] } } +{ "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": "82054ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.221680, 83.142625 ], [ 186.811523, 83.015539 ], [ 190.678711, 81.321593 ], [ 183.647461, 79.981891 ], [ 173.452148, 80.065634 ], [ 166.904297, 81.524751 ], [ 172.221680, 83.142625 ] ] ], [ [ [ -187.778320, 83.142625 ], [ -173.188477, 83.015539 ], [ -169.321289, 81.321593 ], [ -176.352539, 79.981891 ], [ -186.547852, 80.065634 ], [ -193.095703, 81.524751 ], [ -187.778320, 83.142625 ] ] ] ] } } +{ "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": "82174ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.857422, 61.876870 ], [ 180.395508, 60.435542 ], [ 178.593750, 59.040555 ], [ 175.297852, 58.972667 ], [ 173.540039, 60.348696 ], [ 175.209961, 61.835413 ], [ 178.857422, 61.876870 ] ] ], [ [ [ -181.142578, 61.876870 ], [ -179.604492, 60.435542 ], [ -181.406250, 59.040555 ], [ -184.702148, 58.972667 ], [ -186.459961, 60.348696 ], [ -184.790039, 61.835413 ], [ -181.142578, 61.876870 ] ] ] ] } } +{ "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": "8200c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.333984, 86.844000 ], [ 96.196289, 85.979057 ], [ 92.636719, 84.245182 ], [ 78.706055, 83.384872 ], [ 64.028320, 83.900390 ], [ 56.337891, 85.489270 ], [ 72.333984, 86.844000 ] ] ] } } +{ "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": "82091ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.383789, 65.730626 ], [ 4.702148, 64.567319 ], [ 3.999023, 63.332413 ], [ 1.098633, 63.134503 ], [ -1.318359, 64.187249 ], [ 0.219727, 65.549367 ], [ 3.383789, 65.730626 ] ] ] } } +{ "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": "826a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, 1.669686 ], [ 26.279297, 0.307616 ], [ 25.576172, -1.274309 ], [ 23.862305, -1.493971 ], [ 22.807617, -0.131836 ], [ 23.510742, 1.406109 ], [ 25.224609, 1.669686 ] ] ] } } +{ "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": "820907fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.494141, 66.705169 ], [ 0.219727, 65.549367 ], [ -1.318359, 64.187249 ], [ -4.394531, 63.898731 ], [ -6.240234, 64.979359 ], [ -4.877930, 66.425537 ], [ -1.494141, 66.705169 ] ] ] } } +{ "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": "827657fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.047852, 1.362176 ], [ 165.102539, 0.351560 ], [ 164.794922, -1.230374 ], [ 163.432617, -1.801461 ], [ 162.333984, -0.790990 ], [ 162.641602, 0.834931 ], [ 164.047852, 1.362176 ] ] ] } } +{ "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": "8238f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 29.878755 ], [ 3.427734, 28.729130 ], [ 3.032227, 27.059126 ], [ 1.318359, 26.509905 ], [ -0.043945, 27.644606 ], [ 0.263672, 29.305561 ], [ 2.021484, 29.878755 ] ] ] } } +{ "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": "826167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.838867, 2.416276 ], [ 76.201172, 1.493971 ], [ 76.201172, -0.175781 ], [ 74.838867, -0.878872 ], [ 73.520508, 0.043945 ], [ 73.520508, 1.669686 ], [ 74.838867, 2.416276 ] ] ] } } +{ "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": "8282a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 0.263671 ], [ 15.996094, -1.054628 ], [ 15.292969, -2.635789 ], [ 13.623047, -2.855263 ], [ 12.700195, -1.493971 ], [ 13.403320, 0.000000 ], [ 15.029297, 0.263671 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 64, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 41, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 48, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 199230168, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6218276, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317100831, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317100831, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 97, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 112, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 49.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 118.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 283.356465, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 730.183153, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:sum:NE_ID": 16230491272, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.571428571428571, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.9285714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4285714285714286, "tippecanoe:mean:MAPCOLOR9": 3.2142857142857146, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 14230726.285714286, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 444162.5714285714, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650059.35714286, "tippecanoe:mean:WOE_ID_EH": 22650059.35714286, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.928571428571429, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5142857142857149, "tippecanoe:mean:MAX_LABEL": 8.47857142857143, "tippecanoe:mean:LABEL_X": 20.2397475, "tippecanoe:mean:LABEL_Y": 52.155939499999998, "tippecanoe:mean:NE_ID": 1159320805.142857, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.754883, 78.331648 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 103.754883, 78.331648 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82850ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.402344, 1.362176 ], [ 63.632812, 0.483393 ], [ 63.325195, -0.966751 ], [ 61.787109, -1.537901 ], [ 60.556641, -0.615223 ], [ 60.908203, 0.834931 ], [ 62.402344, 1.362176 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82388ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.043945, 27.644606 ], [ 1.318359, 26.509905 ], [ 1.010742, 24.846565 ], [ -0.659180, 24.327077 ], [ -1.977539, 25.443275 ], [ -1.713867, 27.059126 ], [ -0.043945, 27.644606 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8272effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.502930, 2.284551 ], [ 146.821289, 1.142502 ], [ 146.513672, -0.615223 ], [ 144.843750, -1.230374 ], [ 143.481445, -0.087891 ], [ 143.789062, 1.669686 ], [ 145.502930, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.128906, 67.407487 ], [ 97.866211, 67.050304 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "828507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.765625, 1.669686 ], [ 60.908203, 0.834931 ], [ 60.556641, -0.615223 ], [ 59.062500, -1.186439 ], [ 57.919922, -0.307616 ], [ 58.271484, 1.142502 ], [ 59.765625, 1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "824797fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.340820, 26.470573 ], [ -178.330078, 25.045792 ], [ -179.208984, 23.483401 ], [ -181.098633, 23.362429 ], [ -182.153320, 24.766785 ], [ -181.318359, 26.352498 ], [ -179.340820, 26.470573 ] ] ], [ [ [ 180.659180, 26.470573 ], [ 181.669922, 25.045792 ], [ 180.791016, 23.483401 ], [ 178.901367, 23.362429 ], [ 177.846680, 24.766785 ], [ 178.681641, 26.352498 ], [ 180.659180, 26.470573 ] ] ] ] } } +{ "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": "820047fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.406250, 85.001600 ], [ 7.602539, 83.465380 ], [ -0.527344, 82.249855 ], [ -12.832031, 82.249855 ], [ -22.016602, 83.415178 ], [ -17.929688, 84.943837 ], [ 1.406250, 85.001600 ] ] ] } } +{ "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": "8274b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.821289, 2.635789 ], [ -10.546875, 2.064982 ], [ -10.283203, 0.571280 ], [ -11.250000, -0.395505 ], [ -12.524414, 0.131836 ], [ -12.832031, 1.669686 ], [ -11.821289, 2.635789 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 973560, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82846ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.520508, 0.043945 ], [ 74.838867, -0.878872 ], [ 74.663086, -2.372369 ], [ 73.125000, -2.986927 ], [ 71.762695, -2.021065 ], [ 71.982422, -0.527336 ], [ 73.520508, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.067383, 76.970245 ], [ 181.889648, 76.920614 ], [ 184.746094, 75.286578 ], [ 180.834961, 73.849286 ], [ 174.462891, 73.873717 ], [ 170.771484, 75.364506 ], [ 174.067383, 76.970245 ] ] ], [ [ [ -185.932617, 76.970245 ], [ -178.110352, 76.920614 ], [ -175.253906, 75.286578 ], [ -179.165039, 73.849286 ], [ -185.537109, 73.873717 ], [ -189.228516, 75.364506 ], [ -185.932617, 76.970245 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8274e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.768555, 0.307616 ], [ -2.153320, -0.834931 ], [ -2.812500, -2.196727 ], [ -4.306641, -2.021065 ], [ -4.921875, -0.834931 ], [ -4.042969, 0.087891 ], [ -2.768555, 0.307616 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "827a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.198242, 2.547988 ], [ 44.296875, 1.274309 ], [ 43.769531, -0.263671 ], [ 42.143555, -0.483393 ], [ 41.044922, 0.834931 ], [ 41.572266, 2.372369 ], [ 43.198242, 2.547988 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82041ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 75277476, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 2773739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424868, "tippecanoe:sum:WOE_ID": 46849839, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424868, "tippecanoe:sum:WOE_ID_EH": 46849839, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 248.997708, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.384924, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 60.037332, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642320, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 37638738, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 1386869.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424919.5, "tippecanoe:mean:WOE_ID_EH": 23424919.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 11.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 124.498854, "tippecanoe:mean:LABEL_Y": 30.018666, "tippecanoe:mean:NE_ID": 1159321160, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.996094, 73.946791 ], [ 156.005859, 72.842021 ], [ 154.995117, 71.074056 ], [ 149.985352, 70.363091 ], [ 145.327148, 71.328950 ], [ 145.371094, 73.124945 ], [ 150.996094, 73.946791 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "820147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.285156, 78.197578 ], [ 9.887695, 77.832589 ], [ 11.821289, 76.362262 ], [ 7.382812, 75.386696 ], [ 1.098633, 75.704786 ], [ -1.889648, 77.039418 ], [ 2.285156, 78.197578 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8204affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7507400, "tippecanoe:sum:POP_EST": 120456048, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 654721, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424776, "tippecanoe:sum:WOE_ID": 71715458, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424776, "tippecanoe:sum:WOE_ID_EH": 71715458, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 14, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 104.50487, "tippecanoe:sum:LABEL_X": 323.98993099999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 56.811829, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962869, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 40152016, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 218240.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905152.666666669, "tippecanoe:mean:WOE_ID_EH": 23905152.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 107.99664366666666, "tippecanoe:mean:LABEL_Y": 18.937276333333334, "tippecanoe:mean:NE_ID": 1159320956.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 71.328950 ], [ 149.985352, 70.363091 ], [ 149.589844, 68.576441 ], [ 145.327148, 67.742759 ], [ 141.064453, 68.576441 ], [ 140.712891, 70.363091 ], [ 145.327148, 71.328950 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8233a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.692383, 32.583849 ], [ -178.549805, 31.090574 ], [ -179.516602, 29.496988 ], [ -181.538086, 29.382175 ], [ -182.680664, 30.826781 ], [ -181.757812, 32.435613 ], [ -179.692383, 32.583849 ] ] ], [ [ [ 180.307617, 32.583849 ], [ 181.450195, 31.090574 ], [ 180.483398, 29.496988 ], [ 178.461914, 29.382175 ], [ 177.319336, 30.826781 ], [ 178.242188, 32.435613 ], [ 180.307617, 32.583849 ] ] ] ] } } +{ "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": "820167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.098633, 75.704786 ], [ 7.382812, 75.386696 ], [ 9.184570, 73.995328 ], [ 5.625000, 73.035419 ], [ 0.307617, 73.315246 ], [ -2.241211, 74.578426 ], [ 1.098633, 75.704786 ] ] ] } } +{ "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": "82092ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.669922, 69.271709 ], [ 0.219727, 68.073305 ], [ -1.494141, 66.705169 ], [ -4.877930, 66.425537 ], [ -6.987305, 67.542167 ], [ -5.493164, 69.021414 ], [ -1.669922, 69.271709 ] ] ] } } +{ "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": "8277b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.491211, 1.757537 ], [ 149.809570, 0.615223 ], [ 149.458008, -1.098565 ], [ 147.832031, -1.713612 ], [ 146.513672, -0.615223 ], [ 146.821289, 1.142502 ], [ 148.491211, 1.757537 ] ] ] } } +{ "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": "8247b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.516602, 29.496988 ], [ -178.461914, 28.033198 ], [ -179.340820, 26.470573 ], [ -181.318359, 26.352498 ], [ -182.416992, 27.761330 ], [ -181.538086, 29.382175 ], [ -179.516602, 29.496988 ] ] ], [ [ [ 180.483398, 29.496988 ], [ 181.538086, 28.033198 ], [ 180.659180, 26.470573 ], [ 178.681641, 26.352498 ], [ 177.583008, 27.761330 ], [ 178.461914, 29.382175 ], [ 180.483398, 29.496988 ] ] ] ] } } +{ "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": "82752ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.571289, 8.320212 ], [ 0.571289, 7.231699 ], [ 0.307617, 5.878332 ], [ -1.054688, 5.572250 ], [ -2.153320, 6.664608 ], [ -1.933594, 8.015716 ], [ -0.571289, 8.320212 ] ] ] } } +{ "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": "82755ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.834961, 1.889306 ], [ -0.175781, 0.703107 ], [ -0.834961, -0.659165 ], [ -2.153320, -0.834931 ], [ -2.768555, 0.307616 ], [ -2.153320, 1.625758 ], [ -0.834961, 1.889306 ] ] ] } } +{ "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": "82382ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 37.649034 ], [ 3.559570, 36.597889 ], [ 3.120117, 34.921971 ], [ 1.274414, 34.307144 ], [ -0.219727, 35.389050 ], [ 0.131836, 37.020098 ], [ 2.021484, 37.649034 ] ] ] } } +{ "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": "82721ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.350586, 3.381824 ], [ 140.756836, 2.196727 ], [ 140.449219, 0.439449 ], [ 138.735352, -0.175781 ], [ 137.373047, 0.966751 ], [ 137.680664, 2.767478 ], [ 139.350586, 3.381824 ] ] ] } } +{ "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": "8272a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.296875, 1.493971 ], [ 135.659180, 0.351560 ], [ 135.395508, -1.406109 ], [ 133.681641, -2.021065 ], [ 132.319336, -0.878872 ], [ 132.626953, 0.878872 ], [ 134.296875, 1.493971 ] ] ] } } +{ "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": "82652ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.327148, 3.250209 ], [ 101.777344, 2.284551 ], [ 101.601562, 0.527336 ], [ 100.019531, -0.263671 ], [ 98.569336, 0.747049 ], [ 98.701172, 2.504085 ], [ 100.327148, 3.250209 ] ] ] } } +{ "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": "826a87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 2.723583 ], [ 23.510742, 1.406109 ], [ 22.807617, -0.131836 ], [ 21.093750, -0.395505 ], [ 20.083008, 0.922812 ], [ 20.786133, 2.504085 ], [ 22.456055, 2.723583 ] ] ] } } +{ "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": "827cb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.150391, 2.240640 ], [ -12.832031, 1.669686 ], [ -12.524414, 0.131836 ], [ -13.579102, -0.878872 ], [ -14.897461, -0.351560 ], [ -15.205078, 1.230374 ], [ -14.150391, 2.240640 ] ] ] } } +{ "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": "827a47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.276367, 1.933227 ], [ 39.375000, 0.615223 ], [ 38.803711, -0.966751 ], [ 37.089844, -1.186439 ], [ 35.991211, 0.131836 ], [ 36.606445, 1.713612 ], [ 38.276367, 1.933227 ] ] ] } } +{ "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": "826887fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.048828, 2.021065 ], [ 116.323242, 1.054628 ], [ 116.103516, -0.571280 ], [ 114.653320, -1.318243 ], [ 113.334961, -0.395505 ], [ 113.554688, 1.274309 ], [ 115.048828, 2.021065 ] ] ] } } +{ "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": "82764ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.046875, 2.943041 ], [ 169.013672, 1.933227 ], [ 168.750000, 0.395505 ], [ 167.475586, -0.131836 ], [ 166.420898, 0.878872 ], [ 166.728516, 2.416276 ], [ 168.046875, 2.943041 ] ] ] } } +{ "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": "820777fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.139648, 68.220523 ], [ -10.546875, 67.152898 ], [ -11.645508, 65.640155 ], [ -14.941406, 65.109148 ], [ -17.534180, 66.089364 ], [ -16.831055, 67.692771 ], [ -13.139648, 68.220523 ] ] ] } } +{ "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": "827ea7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.846680, 0.834931 ], [ 179.165039, 0.659165 ], [ 179.824219, -0.703107 ], [ 179.165039, -1.889306 ], [ 177.846680, -1.625758 ], [ 177.231445, -0.307616 ], [ 177.846680, 0.834931 ] ] ] } } +{ "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": "821867fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.615234, 50.597186 ], [ 1.186523, 49.468124 ], [ 0.747070, 47.901614 ], [ -1.406250, 47.457809 ], [ -3.251953, 48.545705 ], [ -2.900391, 50.148746 ], [ -0.615234, 50.597186 ] ] ] } } +{ "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": "827eaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.187500, 2.196727 ], [ 177.846680, 0.834931 ], [ 177.231445, -0.307616 ], [ 175.957031, -0.087891 ], [ 175.078125, 0.834931 ], [ 175.693359, 2.021065 ], [ 177.187500, 2.196727 ] ] ] } } +{ "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": "8268dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.398438, 0.659165 ], [ 124.716797, -0.439449 ], [ 124.453125, -2.152814 ], [ 122.871094, -2.723583 ], [ 121.596680, -1.625758 ], [ 121.816406, 0.087891 ], [ 123.398438, 0.659165 ] ] ] } } +{ "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": "828687fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.308594, 1.625758 ], [ 87.802734, 0.659165 ], [ 87.714844, -1.054628 ], [ 86.176758, -1.801461 ], [ 84.726562, -0.834931 ], [ 84.770508, 0.878872 ], [ 86.308594, 1.625758 ] ] ] } } +{ "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": "82656ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.416992, 1.186439 ], [ 93.867188, 0.219726 ], [ 93.779297, -1.537901 ], [ 92.197266, -2.284551 ], [ 90.703125, -1.318243 ], [ 90.834961, 0.439449 ], [ 92.416992, 1.186439 ] ] ] } } +{ "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": "827577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.307617, 5.878332 ], [ 1.406250, 4.784469 ], [ 1.142578, 3.469557 ], [ -0.175781, 3.250209 ], [ -1.274414, 4.258768 ], [ -1.054688, 5.572250 ], [ 0.307617, 5.878332 ] ] ] } } +{ "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": "825a97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.208984, 23.483401 ], [ -178.242188, 22.105999 ], [ -179.077148, 20.591652 ], [ -180.878906, 20.427013 ], [ -181.933594, 21.779905 ], [ -181.098633, 23.362429 ], [ -179.208984, 23.483401 ] ] ], [ [ [ 180.791016, 23.483401 ], [ 181.757812, 22.105999 ], [ 180.922852, 20.591652 ], [ 179.121094, 20.427013 ], [ 178.066406, 21.779905 ], [ 178.901367, 23.362429 ], [ 180.791016, 23.483401 ] ] ] ] } } +{ "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": "8274affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.129883, 1.010690 ], [ -6.987305, 0.483393 ], [ -6.372070, -0.659165 ], [ -7.294922, -1.625758 ], [ -8.789062, -1.450040 ], [ -9.052734, 0.043945 ], [ -8.129883, 1.010690 ] ] ] } } +{ "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": "8268b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.236328, 2.284551 ], [ 113.554688, 1.274309 ], [ 113.334961, -0.395505 ], [ 111.840820, -1.098565 ], [ 110.522461, -0.175781 ], [ 110.742188, 1.537901 ], [ 112.236328, 2.284551 ] ] ] } } +{ "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": "821647fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.374023, 56.292157 ], [ 180.000000, 54.927142 ], [ 178.681641, 53.540307 ], [ 175.869141, 53.488046 ], [ 174.199219, 54.800685 ], [ 175.385742, 56.218923 ], [ 178.374023, 56.292157 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820527fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.063477, 81.334844 ], [ 107.094727, 79.997168 ], [ 103.754883, 78.331648 ], [ 95.537109, 77.888038 ], [ 88.725586, 78.988187 ], [ 89.560547, 80.739423 ], [ 100.063477, 81.334844 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82339ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.043945, 38.719805 ], [ -178.857422, 37.230328 ], [ -179.868164, 35.639441 ], [ -182.021484, 35.532226 ], [ -183.295898, 37.020098 ], [ -182.285156, 38.616870 ], [ -180.043945, 38.719805 ] ] ], [ [ [ 179.956055, 38.719805 ], [ 181.142578, 37.230328 ], [ 180.131836, 35.639441 ], [ 177.978516, 35.532226 ], [ 176.704102, 37.020098 ], [ 177.714844, 38.616870 ], [ 179.956055, 38.719805 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 97.866211, 67.050304 ], [ 96.899414, 65.440002 ], [ 93.120117, 64.979359 ], [ 89.956055, 66.053716 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "823807fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 35.389050 ], [ 1.274414, 34.307144 ], [ 0.922852, 32.657876 ], [ -0.834961, 32.063956 ], [ -2.329102, 33.063924 ], [ -2.021484, 34.741612 ], [ -0.219727, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:min:POP_EST": 603253, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.363281, 73.775780 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 86.835938, 70.363091 ], [ 82.441406, 71.286699 ], [ 82.221680, 72.971189 ], [ 87.363281, 73.775780 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "827f4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.750000, 0.395505 ], [ 169.716797, -0.571280 ], [ 169.453125, -2.064982 ], [ 168.178711, -2.635789 ], [ 167.167969, -1.669686 ], [ 167.475586, -0.131836 ], [ 168.750000, 0.395505 ] ] ] } } +{ "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": "8282f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.019531, 2.328460 ], [ 10.898438, 1.054628 ], [ 10.195312, -0.439449 ], [ 8.613281, -0.659165 ], [ 7.778320, 0.615223 ], [ 8.481445, 2.064982 ], [ 10.019531, 2.328460 ] ] ] } } +{ "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": "8272affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.373047, 0.966751 ], [ 138.735352, -0.175781 ], [ 138.427734, -1.933227 ], [ 136.757812, -2.547988 ], [ 135.395508, -1.406109 ], [ 135.659180, 0.351560 ], [ 137.373047, 0.966751 ] ] ] } } +{ "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": "825937fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.922852, 22.715390 ], [ 0.395508, 21.575719 ], [ 0.087891, 19.973349 ], [ -1.450195, 19.518375 ], [ -2.724609, 20.591652 ], [ -2.504883, 22.187405 ], [ -0.922852, 22.715390 ] ] ] } } +{ "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": "827ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.705078, 1.625758 ], [ 173.627930, 0.659165 ], [ 173.012695, -0.483393 ], [ 171.870117, -1.010690 ], [ 170.947266, -0.043945 ], [ 171.210938, 1.450040 ], [ 172.705078, 1.625758 ] ] ] } } +{ "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": "827c17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.116211, 1.362176 ], [ -17.666016, 0.790990 ], [ -17.358398, -0.834931 ], [ -18.500977, -1.889306 ], [ -19.951172, -1.318243 ], [ -20.258789, 0.307616 ], [ -19.116211, 1.362176 ] ] ] } } +{ "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": "827ca7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.567383, 1.801461 ], [ -15.205078, 1.230374 ], [ -14.897461, -0.351560 ], [ -15.952148, -1.362176 ], [ -17.358398, -0.834931 ], [ -17.666016, 0.790990 ], [ -16.567383, 1.801461 ] ] ] } } +{ "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": "825987fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.747070, 15.284185 ], [ 0.483398, 14.136576 ], [ 0.219727, 12.640338 ], [ -1.230469, 12.297068 ], [ -2.416992, 13.368243 ], [ -2.197266, 14.859850 ], [ -0.747070, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "821067fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 32510453, "tippecanoe:min:POP_EST": 4246439, "tippecanoe:sum:POP_EST": 54130554, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 41, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 226848, "tippecanoe:min:GDP_MD": 66800, "tippecanoe:sum:GDP_MD": 401083, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 70274644, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 70274644, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -72.90016, "tippecanoe:min:LABEL_X": -80.352106, "tippecanoe:sum:LABEL_X": -231.440641, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.72198, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": -5.513775000000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321163, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 3477962891, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 18043518, "tippecanoe:mean:POP_RANK": 13.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 133694.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424881.333333333, "tippecanoe:mean:WOE_ID_EH": 23424881.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.666666666666667, "tippecanoe:mean:LONG_LEN": 5.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -77.14688033333333, "tippecanoe:mean:LABEL_Y": -1.8379250000000003, "tippecanoe:mean:NE_ID": 1159320963.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 68.528235 ], [ 54.843750, 68.447662 ], [ 56.293945, 67.016009 ], [ 53.657227, 65.730626 ], [ 49.746094, 65.820782 ], [ 48.076172, 67.187000 ], [ 50.537109, 68.528235 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "828287fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.809570, 3.030812 ], [ 15.732422, 1.757537 ], [ 15.029297, 0.263671 ], [ 13.403320, 0.000000 ], [ 12.480469, 1.318243 ], [ 13.183594, 2.811371 ], [ 14.809570, 3.030812 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 86.660156, 68.688521 ], [ 86.835938, 70.363091 ], [ 91.450195, 71.031249 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "82616ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.202148, 2.547988 ], [ 73.520508, 1.669686 ], [ 73.520508, 0.043945 ], [ 71.982422, -0.527336 ], [ 70.708008, 0.395505 ], [ 70.927734, 1.845384 ], [ 72.202148, 2.547988 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82005ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.393555, 87.824089 ], [ 16.215820, 86.174454 ], [ 1.406250, 85.001600 ], [ -17.929688, 84.943837 ], [ -34.848633, 85.957428 ], [ -34.936523, 87.584925 ], [ 8.393555, 87.824089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827787fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.435547, 1.230374 ], [ 152.709961, 0.087891 ], [ 152.358398, -1.625758 ], [ 150.776367, -2.240640 ], [ 149.458008, -1.098565 ], [ 149.809570, 0.615223 ], [ 151.435547, 1.230374 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.993164, 0.571280 ], [ 29.091797, -0.790990 ], [ 28.432617, -2.416276 ], [ 26.674805, -2.635789 ], [ 25.576172, -1.274309 ], [ 26.279297, 0.307616 ], [ 27.993164, 0.571280 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823977fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.395508, 43.100983 ], [ 1.230469, 41.967659 ], [ 0.834961, 40.346544 ], [ -1.098633, 39.774769 ], [ -2.724609, 40.880295 ], [ -2.416992, 42.553080 ], [ -0.395508, 43.100983 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820927fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.987305, 67.542167 ], [ -4.877930, 66.425537 ], [ -6.240234, 64.979359 ], [ -9.404297, 64.586185 ], [ -11.645508, 65.640155 ], [ -10.546875, 67.152898 ], [ -6.987305, 67.542167 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82688ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.773438, 1.669686 ], [ 119.047852, 0.571280 ], [ 118.784180, -1.098565 ], [ 117.333984, -1.669686 ], [ 116.103516, -0.571280 ], [ 116.323242, 1.054628 ], [ 117.773438, 1.669686 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.752930, 0.878872 ], [ -20.258789, 0.307616 ], [ -19.951172, -1.318243 ], [ -21.137695, -2.416276 ], [ -22.631836, -1.845384 ], [ -22.939453, -0.175781 ], [ -21.752930, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821947fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.659180, 55.128649 ], [ 2.592773, 54.007769 ], [ 2.109375, 52.509535 ], [ -0.219727, 52.133488 ], [ -2.197266, 53.252069 ], [ -1.801758, 54.749991 ], [ 0.659180, 55.128649 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8286d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.419922, 2.021065 ], [ 81.870117, 1.098565 ], [ 81.782227, -0.615223 ], [ 80.332031, -1.318243 ], [ 78.969727, -0.395505 ], [ 78.969727, 1.274309 ], [ 80.419922, 2.021065 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827397fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.232422, 2.547988 ], [ 129.594727, 1.406109 ], [ 129.287109, -0.351560 ], [ 127.661133, -0.966751 ], [ 126.298828, 0.175781 ], [ 126.606445, 1.889306 ], [ 128.232422, 2.547988 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.126953, 1.054628 ], [ 66.357422, 0.175781 ], [ 66.093750, -1.318243 ], [ 64.555664, -1.889306 ], [ 63.325195, -0.966751 ], [ 63.632812, 0.483393 ], [ 65.126953, 1.054628 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "829567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 127.661133, -0.966751 ], [ 127.397461, -2.679687 ], [ 125.771484, -3.250209 ], [ 124.453125, -2.152814 ], [ 124.716797, -0.439449 ], [ 126.298828, 0.175781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820917fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.318359, 64.187249 ], [ 1.098633, 63.134503 ], [ 0.527344, 61.835413 ], [ -2.285156, 61.543641 ], [ -4.790039, 62.573106 ], [ -4.394531, 63.898731 ], [ -1.318359, 64.187249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 3.030812 ], [ 36.606445, 1.713612 ], [ 35.991211, 0.131836 ], [ 34.277344, -0.087891 ], [ 33.178711, 1.274309 ], [ 33.793945, 2.811371 ], [ 35.507812, 3.030812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.778320, 0.615223 ], [ 8.613281, -0.659165 ], [ 7.910156, -2.152814 ], [ 6.372070, -2.328460 ], [ 5.581055, -1.054628 ], [ 6.284180, 0.395505 ], [ 7.778320, 0.615223 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820d97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.560547, 67.759398 ], [ 181.494141, 66.231457 ], [ 179.165039, 64.774125 ], [ 175.078125, 64.755390 ], [ 172.880859, 66.196009 ], [ 174.946289, 67.742759 ], [ 179.560547, 67.759398 ] ] ], [ [ [ -180.439453, 67.759398 ], [ -178.505859, 66.231457 ], [ -180.834961, 64.774125 ], [ -184.921875, 64.755390 ], [ -187.119141, 66.196009 ], [ -185.053711, 67.742759 ], [ -180.439453, 67.759398 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82381ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.922852, 32.657876 ], [ 2.373047, 31.541090 ], [ 2.021484, 29.878755 ], [ 0.263672, 29.305561 ], [ -1.142578, 30.372875 ], [ -0.834961, 32.063956 ], [ 0.922852, 32.657876 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820977fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.350586, 70.772443 ], [ 5.932617, 69.519147 ], [ 3.779297, 68.220523 ], [ 0.219727, 68.073305 ], [ -1.669922, 69.271709 ], [ 0.263672, 70.670881 ], [ 4.350586, 70.772443 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8272e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.426758, 2.855263 ], [ 143.789062, 1.669686 ], [ 143.481445, -0.087891 ], [ 141.811523, -0.703107 ], [ 140.449219, 0.439449 ], [ 140.756836, 2.196727 ], [ 142.426758, 2.855263 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8209b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.197266, 59.377988 ], [ 4.218750, 58.263287 ], [ 3.647461, 56.872996 ], [ 1.142578, 56.583692 ], [ -0.922852, 57.680660 ], [ -0.483398, 59.108308 ], [ 2.197266, 59.377988 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827b87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 1.054628 ], [ 53.920898, -0.175781 ], [ 53.525391, -1.625758 ], [ 52.075195, -1.845384 ], [ 51.020508, -0.615223 ], [ 51.459961, 0.834931 ], [ 52.910156, 1.054628 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.083008, 0.922812 ], [ 21.093750, -0.395505 ], [ 20.390625, -1.977147 ], [ 18.676758, -2.196727 ], [ 17.666016, -0.834931 ], [ 18.369141, 0.703107 ], [ 20.083008, 0.922812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.044922, 0.834931 ], [ 42.143555, -0.483393 ], [ 41.572266, -2.064982 ], [ 39.902344, -2.284551 ], [ 38.803711, -0.966751 ], [ 39.375000, 0.615223 ], [ 41.044922, 0.834931 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8272f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.449219, 0.439449 ], [ 141.811523, -0.703107 ], [ 141.503906, -2.460181 ], [ 139.833984, -3.074695 ], [ 138.427734, -1.933227 ], [ 138.735352, -0.175781 ], [ 140.449219, 0.439449 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820757fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.863281, 68.672544 ], [ -16.831055, 67.692771 ], [ -17.534180, 66.089364 ], [ -20.917969, 65.440002 ], [ -23.906250, 66.337505 ], [ -23.598633, 67.974634 ], [ -19.863281, 68.672544 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825927fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.010742, 24.846565 ], [ 2.329102, 23.725012 ], [ 1.977539, 22.065278 ], [ 0.395508, 21.575719 ], [ -0.922852, 22.715390 ], [ -0.659180, 24.327077 ], [ 1.010742, 24.846565 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.736328, 41.804078 ], [ 181.010742, 40.279526 ], [ 179.956055, 38.719805 ], [ 177.714844, 38.616870 ], [ 176.396484, 40.111689 ], [ 177.407227, 41.705729 ], [ 179.736328, 41.804078 ] ] ], [ [ [ -180.263672, 41.804078 ], [ -178.989258, 40.279526 ], [ -180.043945, 38.719805 ], [ -182.285156, 38.616870 ], [ -183.603516, 40.111689 ], [ -182.592773, 41.705729 ], [ -180.263672, 41.804078 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823827fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 38.099983 ], [ 0.131836, 37.020098 ], [ -0.219727, 35.389050 ], [ -2.021484, 34.741612 ], [ -3.603516, 35.817813 ], [ -3.295898, 37.509726 ], [ -1.406250, 38.099983 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.546875, 87.364326 ], [ 169.101562, 86.177385 ], [ 161.806641, 84.532994 ], [ 145.415039, 83.881684 ], [ 129.023438, 84.541361 ], [ 121.816406, 86.186164 ], [ 145.546875, 87.364326 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821667fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, 59.040555 ], [ 180.000000, 57.657158 ], [ 178.374023, 56.292157 ], [ 175.385742, 56.218923 ], [ 173.803711, 57.539417 ], [ 175.297852, 58.972667 ], [ 178.593750, 59.040555 ] ] ], [ [ [ -181.406250, 59.040555 ], [ -180.000000, 57.657158 ], [ -181.625977, 56.292157 ], [ -184.614258, 56.218923 ], [ -186.196289, 57.539417 ], [ -184.702148, 58.972667 ], [ -181.406250, 59.040555 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827e1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.078125, 0.834931 ], [ 175.957031, -0.087891 ], [ 175.341797, -1.230374 ], [ 173.891602, -1.406109 ], [ 173.012695, -0.483393 ], [ 173.627930, 0.659165 ], [ 175.078125, 0.834931 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82016ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.008789, 77.078784 ], [ -1.889648, 77.039418 ], [ 1.098633, 75.704786 ], [ -2.241211, 74.578426 ], [ -7.426758, 74.354828 ], [ -10.986328, 75.563041 ], [ -9.008789, 77.078784 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82868ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.364258, 1.845384 ], [ 84.770508, 0.878872 ], [ 84.726562, -0.834931 ], [ 83.232422, -1.581830 ], [ 81.782227, -0.615223 ], [ 81.870117, 1.098565 ], [ 83.364258, 1.845384 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828c97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.379883, 2.504085 ], [ 110.742188, 1.537901 ], [ 110.522461, -0.175781 ], [ 108.984375, -0.922812 ], [ 107.622070, 0.043945 ], [ 107.797852, 1.757537 ], [ 109.379883, 2.504085 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827617fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, 0.175781 ], [ 158.247070, -0.878872 ], [ 157.939453, -2.547988 ], [ 156.401367, -3.162456 ], [ 155.214844, -2.108899 ], [ 155.522461, -0.395505 ], [ 157.060547, 0.175781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827607fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.862305, 2.416276 ], [ 160.048828, 1.318243 ], [ 159.741211, -0.307616 ], [ 158.247070, -0.878872 ], [ 157.060547, 0.175781 ], [ 157.368164, 1.845384 ], [ 158.862305, 2.416276 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.480469, 1.318243 ], [ 13.403320, 0.000000 ], [ 12.700195, -1.493971 ], [ 11.074219, -1.713612 ], [ 10.195312, -0.439449 ], [ 10.898438, 1.054628 ], [ 12.480469, 1.318243 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825917fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.087891, 19.973349 ], [ 1.362305, 18.812718 ], [ 1.054688, 17.266728 ], [ -0.483398, 16.804541 ], [ -1.713867, 17.936929 ], [ -1.450195, 19.518375 ], [ 0.087891, 19.973349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82765ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.420898, 0.878872 ], [ 167.475586, -0.131836 ], [ 167.167969, -1.669686 ], [ 165.849609, -2.240640 ], [ 164.794922, -1.230374 ], [ 165.102539, 0.351560 ], [ 166.420898, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82224ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.989258, 50.708634 ], [ 180.439453, 49.267805 ], [ 179.252930, 47.783635 ], [ 176.704102, 47.724545 ], [ 175.166016, 49.124219 ], [ 176.308594, 50.652943 ], [ 178.989258, 50.708634 ] ] ], [ [ [ -181.010742, 50.708634 ], [ -179.560547, 49.267805 ], [ -180.747070, 47.783635 ], [ -183.295898, 47.724545 ], [ -184.833984, 49.124219 ], [ -183.691406, 50.652943 ], [ -181.010742, 50.708634 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82739ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.220703, 2.021065 ], [ 132.626953, 0.878872 ], [ 132.319336, -0.878872 ], [ 130.649414, -1.493971 ], [ 129.287109, -0.351560 ], [ 129.594727, 1.406109 ], [ 131.220703, 2.021065 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8286b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 1.406109 ], [ 90.834961, 0.439449 ], [ 90.703125, -1.318243 ], [ 89.165039, -2.021065 ], [ 87.714844, -1.054628 ], [ 87.802734, 0.659165 ], [ 89.340820, 1.406109 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827b8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.449219, 2.108899 ], [ 51.459961, 0.834931 ], [ 51.020508, -0.615223 ], [ 49.526367, -0.834931 ], [ 48.471680, 0.439449 ], [ 48.955078, 1.889306 ], [ 50.449219, 2.108899 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82186ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.747070, 47.901614 ], [ 2.460938, 46.769968 ], [ 2.021484, 45.182037 ], [ -0.043945, 44.715514 ], [ -1.757812, 45.828799 ], [ -1.406250, 47.457809 ], [ 0.747070, 47.901614 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828c8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.633789, 0.263671 ], [ 106.040039, -0.703107 ], [ 105.864258, -2.372369 ], [ 104.282227, -3.162456 ], [ 102.875977, -2.196727 ], [ 103.051758, -0.483393 ], [ 104.633789, 0.263671 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.142578, 3.469557 ], [ 1.889648, 2.328460 ], [ 1.186523, 0.922812 ], [ -0.175781, 0.703107 ], [ -0.834961, 1.889306 ], [ -0.175781, 3.250209 ], [ 1.142578, 3.469557 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82090ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.779297, 68.220523 ], [ 5.229492, 67.016009 ], [ 3.383789, 65.730626 ], [ 0.219727, 65.549367 ], [ -1.494141, 66.705169 ], [ 0.219727, 68.073305 ], [ 3.779297, 68.220523 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.283203, 0.571280 ], [ -9.052734, 0.043945 ], [ -8.789062, -1.450040 ], [ -9.711914, -2.416276 ], [ -10.986328, -1.933227 ], [ -11.250000, -0.395505 ], [ -10.283203, 0.571280 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820057fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.215820, 86.174454 ], [ 35.771484, 85.255314 ], [ 33.222656, 83.599031 ], [ 20.917969, 82.869765 ], [ 7.602539, 83.465380 ], [ 1.406250, 85.001600 ], [ 16.215820, 86.174454 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823967fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.182037 ], [ 3.691406, 44.213710 ], [ 3.251953, 42.617791 ], [ 1.230469, 41.967659 ], [ -0.395508, 43.100983 ], [ -0.043945, 44.715514 ], [ 2.021484, 45.182037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828cd7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.601562, 0.527336 ], [ 103.051758, -0.483393 ], [ 102.875977, -2.196727 ], [ 101.293945, -2.943041 ], [ 99.843750, -1.977147 ], [ 100.019531, -0.263671 ], [ 101.601562, 0.527336 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.471680, 0.439449 ], [ 49.526367, -0.834931 ], [ 49.086914, -2.372369 ], [ 47.504883, -2.591889 ], [ 46.450195, -1.318243 ], [ 46.933594, 0.219726 ], [ 48.471680, 0.439449 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820727fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.889648, 71.910888 ], [ 0.263672, 70.670881 ], [ -1.669922, 69.271709 ], [ -5.493164, 69.021414 ], [ -7.954102, 70.170201 ], [ -6.328125, 71.663663 ], [ -1.889648, 71.910888 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828c87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.622070, 0.043945 ], [ 108.984375, -0.922812 ], [ 108.808594, -2.591889 ], [ 107.226562, -3.337954 ], [ 105.864258, -2.372369 ], [ 106.040039, -0.703107 ], [ 107.622070, 0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82014ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.415039, 79.624056 ], [ -1.406250, 79.592349 ], [ 2.285156, 78.197578 ], [ -1.889648, 77.039418 ], [ -9.008789, 77.078784 ], [ -13.579102, 78.278201 ], [ -10.415039, 79.624056 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820737fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.241211, 74.578426 ], [ 0.307617, 73.315246 ], [ -1.889648, 71.910888 ], [ -6.328125, 71.663663 ], [ -9.228516, 72.854981 ], [ -7.426758, 74.354828 ], [ -2.241211, 74.578426 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826acffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 1.274309 ], [ 34.277344, -0.087891 ], [ 33.662109, -1.669686 ], [ 31.904297, -1.933227 ], [ 30.805664, -0.571280 ], [ 31.464844, 1.010690 ], [ 33.178711, 1.274309 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82599ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 12.640338 ], [ 1.406250, 11.523088 ], [ 1.098633, 10.055403 ], [ -0.307617, 9.752370 ], [ -1.494141, 10.833306 ], [ -1.230469, 12.297068 ], [ 0.219727, 12.640338 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827eeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.288086, 2.416276 ], [ 171.210938, 1.450040 ], [ 170.947266, -0.043945 ], [ 169.716797, -0.571280 ], [ 168.750000, 0.395505 ], [ 169.013672, 1.933227 ], [ 170.288086, 2.416276 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.098633, 10.055403 ], [ 2.285156, 8.928487 ], [ 1.977539, 7.536764 ], [ 0.571289, 7.231699 ], [ -0.571289, 8.320212 ], [ -0.307617, 9.752370 ], [ 1.098633, 10.055403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827637fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.137695, 2.943041 ], [ 157.368164, 1.845384 ], [ 157.060547, 0.175781 ], [ 155.522461, -0.395505 ], [ 154.291992, 0.703107 ], [ 154.599609, 2.372369 ], [ 156.137695, 2.943041 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82194ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.109375, 52.509535 ], [ 3.867188, 51.371780 ], [ 3.383789, 49.866317 ], [ 1.186523, 49.468124 ], [ -0.615234, 50.597186 ], [ -0.219727, 52.133488 ], [ 2.109375, 52.509535 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.403320, 88.499917 ], [ 72.333984, 86.844000 ], [ 56.337891, 85.489270 ], [ 35.771484, 85.255314 ], [ 16.215820, 86.174454 ], [ 8.393555, 87.824089 ], [ 58.403320, 88.499917 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.452148, 80.065634 ], [ 183.647461, 79.981891 ], [ 186.987305, 78.322757 ], [ 181.889648, 76.920614 ], [ 174.067383, 76.970245 ], [ 169.365234, 78.455425 ], [ 173.452148, 80.065634 ] ] ], [ [ [ -186.547852, 80.065634 ], [ -176.352539, 79.981891 ], [ -173.012695, 78.322757 ], [ -178.110352, 76.920614 ], [ -185.932617, 76.970245 ], [ -190.634766, 78.455425 ], [ -186.547852, 80.065634 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823297fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.516602, 44.809122 ], [ 180.834961, 43.325178 ], [ 179.736328, 41.804078 ], [ 177.407227, 41.705729 ], [ 176.000977, 43.165123 ], [ 177.055664, 44.746733 ], [ 179.516602, 44.809122 ] ] ], [ [ [ -180.483398, 44.809122 ], [ -179.165039, 43.325178 ], [ -180.263672, 41.804078 ], [ -182.592773, 41.705729 ], [ -183.999023, 43.165123 ], [ -182.944336, 44.746733 ], [ -180.483398, 44.809122 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820077fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.602539, 83.465380 ], [ 20.917969, 82.869765 ], [ 21.928711, 81.248348 ], [ 13.886719, 80.349631 ], [ 4.130859, 80.788795 ], [ -0.527344, 82.249855 ], [ 7.602539, 83.465380 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820db7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.770508, 70.801366 ], [ 180.087891, 70.786910 ], [ 182.241211, 69.209404 ], [ 179.560547, 67.759398 ], [ 174.946289, 67.742759 ], [ 172.353516, 69.209404 ], [ 174.770508, 70.801366 ] ] ], [ [ [ -185.229492, 70.801366 ], [ -179.912109, 70.786910 ], [ -177.758789, 69.209404 ], [ -180.439453, 67.759398 ], [ -185.053711, 67.742759 ], [ -187.646484, 69.209404 ], [ -185.229492, 70.801366 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.250977, 3.513421 ], [ 98.701172, 2.504085 ], [ 98.569336, 0.747049 ], [ 96.943359, 0.000000 ], [ 95.493164, 0.966751 ], [ 95.625000, 2.723583 ], [ 97.250977, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823387fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.868164, 35.639441 ], [ -178.681641, 34.161818 ], [ -179.692383, 32.583849 ], [ -181.757812, 32.435613 ], [ -182.944336, 33.943360 ], [ -182.021484, 35.532226 ], [ -179.868164, 35.639441 ] ] ], [ [ [ 180.131836, 35.639441 ], [ 181.318359, 34.161818 ], [ 180.307617, 32.583849 ], [ 178.242188, 32.435613 ], [ 177.055664, 33.943360 ], [ 177.978516, 35.532226 ], [ 180.131836, 35.639441 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82760ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.499023, 1.889306 ], [ 162.641602, 0.834931 ], [ 162.333984, -0.790990 ], [ 160.883789, -1.362176 ], [ 159.741211, -0.307616 ], [ 160.048828, 1.318243 ], [ 161.499023, 1.889306 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821977fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.922852, 57.680660 ], [ 1.142578, 56.583692 ], [ 0.659180, 55.128649 ], [ -1.801758, 54.749991 ], [ -3.911133, 55.850650 ], [ -3.515625, 57.326521 ], [ -0.922852, 57.680660 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.493164, 0.966751 ], [ 96.943359, 0.000000 ], [ 96.811523, -1.757537 ], [ 95.229492, -2.504085 ], [ 93.779297, -1.537901 ], [ 93.867188, 0.219726 ], [ 95.493164, 0.966751 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.708008, 0.395505 ], [ 71.982422, -0.527336 ], [ 71.762695, -2.021065 ], [ 70.224609, -2.635789 ], [ 68.906250, -1.669686 ], [ 69.169922, -0.175781 ], [ 70.708008, 0.395505 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.541992, 1.186439 ], [ 121.816406, 0.087891 ], [ 121.596680, -1.625758 ], [ 120.058594, -2.196727 ], [ 118.784180, -1.098565 ], [ 119.047852, 0.571280 ], [ 120.541992, 1.186439 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.142578, 30.372875 ], [ 0.263672, 29.305561 ], [ -0.043945, 27.644606 ], [ -1.713867, 27.059126 ], [ -3.120117, 28.033198 ], [ -2.856445, 29.726222 ], [ -1.142578, 30.372875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820067fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 82.249855 ], [ 4.130859, 80.788795 ], [ -1.406250, 79.592349 ], [ -10.415039, 79.624056 ], [ -16.523438, 80.823901 ], [ -12.832031, 82.249855 ], [ -0.527344, 82.249855 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.366211, 2.372369 ], [ 31.464844, 1.010690 ], [ 30.805664, -0.571280 ], [ 29.091797, -0.790990 ], [ 27.993164, 0.571280 ], [ 28.652344, 2.108899 ], [ 30.366211, 2.372369 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823957fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.834961, 40.346544 ], [ 2.416992, 39.334297 ], [ 2.021484, 37.649034 ], [ 0.131836, 37.020098 ], [ -1.406250, 38.099983 ], [ -1.098633, 39.774769 ], [ 0.834961, 40.346544 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.493164, 1.625758 ], [ 6.284180, 0.395505 ], [ 5.581055, -1.054628 ], [ 4.086914, -1.274309 ], [ 3.339844, -0.043945 ], [ 4.042969, 1.362176 ], [ 5.493164, 1.625758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.244141, 3.030812 ], [ 126.606445, 1.889306 ], [ 126.298828, 0.175781 ], [ 124.716797, -0.439449 ], [ 123.398438, 0.659165 ], [ 123.662109, 2.416276 ], [ 125.244141, 3.030812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828c9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.391602, 2.767478 ], [ 107.797852, 1.757537 ], [ 107.622070, 0.043945 ], [ 106.040039, -0.703107 ], [ 104.633789, 0.263671 ], [ 104.809570, 2.021065 ], [ 106.391602, 2.767478 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 1.493971 ], [ 46.933594, 0.219726 ], [ 46.450195, -1.318243 ], [ 44.868164, -1.537901 ], [ 43.769531, -0.263671 ], [ 44.296875, 1.274309 ], [ 45.878906, 1.493971 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82741ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.108398, 1.406109 ], [ -4.658203, 1.230374 ], [ -4.042969, 0.087891 ], [ -4.921875, -0.834931 ], [ -6.372070, -0.659165 ], [ -6.987305, 0.483393 ], [ -6.108398, 1.406109 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82176ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6430, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3215, "tippecanoe:min:GDP_MD": 934, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 344.884189, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 172.4420945, "tippecanoe:min:LABEL_X": 166.908762, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:sum:LABEL_Y": -33.197629, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -16.5988145, "tippecanoe:min:LABEL_Y": -17.826099, "tippecanoe:max:LABEL_Y": -15.37153, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 5.5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 2318642046, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321023, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:sum:POP_EST": 1189835, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 594917.5, "tippecanoe:min:POP_EST": 299882, "tippecanoe:max:POP_EST": 889953, "tippecanoe:sum:POP_RANK": 21, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 10.5, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -97, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 46849720, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424860, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:sum:WOE_ID_EH": 46849720, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424860, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:sum:scalerank": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.165039, 64.774125 ], [ 180.878906, 63.292939 ], [ 178.857422, 61.876870 ], [ 175.209961, 61.835413 ], [ 173.232422, 63.233627 ], [ 175.078125, 64.755390 ], [ 179.165039, 64.774125 ] ] ], [ [ [ -180.834961, 64.774125 ], [ -179.121094, 63.292939 ], [ -181.142578, 61.876870 ], [ -184.790039, 61.835413 ], [ -186.767578, 63.233627 ], [ -184.921875, 64.755390 ], [ -180.834961, 64.774125 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82754ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.186523, 0.922812 ], [ 1.933594, -0.263671 ], [ 1.230469, -1.669686 ], [ -0.131836, -1.845384 ], [ -0.834961, -0.659165 ], [ -0.175781, 0.703107 ], [ 1.186523, 0.922812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82855ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.895508, 0.703107 ], [ 69.169922, -0.175781 ], [ 68.906250, -1.669686 ], [ 67.368164, -2.284551 ], [ 66.093750, -1.318243 ], [ 66.357422, 0.175781 ], [ 67.895508, 0.703107 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82756ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.251953, 2.547988 ], [ 4.042969, 1.362176 ], [ 3.339844, -0.043945 ], [ 1.933594, -0.263671 ], [ 1.186523, 0.922812 ], [ 1.889648, 2.328460 ], [ 3.251953, 2.547988 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828cdffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.569336, 0.747049 ], [ 100.019531, -0.263671 ], [ 99.843750, -1.977147 ], [ 98.261719, -2.723583 ], [ 96.811523, -1.757537 ], [ 96.943359, 0.000000 ], [ 98.569336, 0.747049 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82226ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.252930, 47.783635 ], [ 180.659180, 46.346928 ], [ 179.516602, 44.809122 ], [ 177.055664, 44.746733 ], [ 175.605469, 46.195042 ], [ 176.704102, 47.724545 ], [ 179.252930, 47.783635 ] ] ], [ [ [ -180.747070, 47.783635 ], [ -179.340820, 46.346928 ], [ -180.483398, 44.809122 ], [ -182.944336, 44.746733 ], [ -184.394531, 46.195042 ], [ -183.295898, 47.724545 ], [ -180.747070, 47.783635 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.816406, 86.186164 ], [ 129.023438, 84.541361 ], [ 118.564453, 83.153111 ], [ 103.930664, 83.031552 ], [ 92.636719, 84.245182 ], [ 96.196289, 85.979057 ], [ 121.816406, 86.186164 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8209a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.527344, 61.835413 ], [ 2.768555, 60.737686 ], [ 2.197266, 59.377988 ], [ -0.483398, 59.108308 ], [ -2.724609, 60.174306 ], [ -2.285156, 61.543641 ], [ 0.527344, 61.835413 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827bb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.327148, 0.043945 ], [ 56.425781, -0.834931 ], [ 56.030273, -2.284551 ], [ 54.536133, -2.855263 ], [ 53.525391, -1.625758 ], [ 53.920898, -0.175781 ], [ 55.327148, 0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82854ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.653320, 2.723583 ], [ 70.927734, 1.845384 ], [ 70.708008, 0.395505 ], [ 69.169922, -0.175781 ], [ 67.895508, 0.703107 ], [ 68.159180, 2.152814 ], [ 69.653320, 2.723583 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8259affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.054688, 17.266728 ], [ 2.285156, 16.088042 ], [ 1.977539, 14.562318 ], [ 0.483398, 14.136576 ], [ -0.747070, 15.284185 ], [ -0.483398, 16.804541 ], [ 1.054688, 17.266728 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820967fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.307617, 73.315246 ], [ 5.625000, 73.035419 ], [ 7.338867, 71.705093 ], [ 4.350586, 70.772443 ], [ 0.263672, 70.670881 ], [ -1.889648, 71.910888 ], [ 0.307617, 73.315246 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82778ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.291992, 0.703107 ], [ 155.522461, -0.395505 ], [ 155.214844, -2.108899 ], [ 153.632812, -2.679687 ], [ 152.358398, -1.625758 ], [ 152.709961, 0.087891 ], [ 154.291992, 0.703107 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, 1.977147 ], [ 58.271484, 1.142502 ], [ 57.919922, -0.307616 ], [ 56.425781, -0.834931 ], [ 55.327148, 0.043945 ], [ 55.722656, 1.450040 ], [ 57.172852, 1.977147 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.337891, 85.489270 ], [ 64.028320, 83.900390 ], [ 55.942383, 82.506295 ], [ 43.330078, 82.396611 ], [ 33.222656, 83.599031 ], [ 35.771484, 85.255314 ], [ 56.337891, 85.489270 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82165ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, 53.540307 ], [ 180.219727, 52.133488 ], [ 178.989258, 50.708634 ], [ 176.308594, 50.652943 ], [ 174.726562, 51.998410 ], [ 175.869141, 53.488046 ], [ 178.681641, 53.540307 ] ] ], [ [ [ -181.318359, 53.540307 ], [ -179.780273, 52.133488 ], [ -181.010742, 50.708634 ], [ -183.691406, 50.652943 ], [ -185.273438, 51.998410 ], [ -184.130859, 53.488046 ], [ -181.318359, 53.540307 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8207b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.523438, 80.823901 ], [ -10.415039, 79.624056 ], [ -13.579102, 78.278201 ], [ -20.302734, 77.804771 ], [ -26.411133, 78.793443 ], [ -26.191406, 80.415707 ], [ -16.523438, 80.823901 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82071ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.578125, 73.528399 ], [ -13.930664, 72.448792 ], [ -15.029297, 70.859087 ], [ -19.248047, 70.303933 ], [ -22.851562, 71.272595 ], [ -22.412109, 72.919635 ], [ -17.578125, 73.528399 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820717fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.986328, 75.563041 ], [ -7.426758, 74.354828 ], [ -9.228516, 72.854981 ], [ -13.930664, 72.448792 ], [ -17.578125, 73.528399 ], [ -16.523438, 75.129504 ], [ -10.986328, 75.563041 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8207affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.181641, 76.184995 ], [ -16.523438, 75.129504 ], [ -17.578125, 73.528399 ], [ -22.412109, 72.919635 ], [ -26.850586, 73.861506 ], [ -26.762695, 75.519151 ], [ -21.181641, 76.184995 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8207a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.579102, 78.278201 ], [ -9.008789, 77.078784 ], [ -10.986328, 75.563041 ], [ -16.523438, 75.129504 ], [ -21.181641, 76.184995 ], [ -20.302734, 77.804771 ], [ -13.579102, 78.278201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820707fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.228516, 72.854981 ], [ -6.328125, 71.663663 ], [ -7.954102, 70.170201 ], [ -11.997070, 69.778952 ], [ -15.029297, 70.859087 ], [ -13.930664, 72.448792 ], [ -9.228516, 72.854981 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82070ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.029297, 70.859087 ], [ -11.997070, 69.778952 ], [ -13.139648, 68.220523 ], [ -16.831055, 67.692771 ], [ -19.863281, 68.672544 ], [ -19.248047, 70.303933 ], [ -15.029297, 70.859087 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82072ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.954102, 70.170201 ], [ -5.493164, 69.021414 ], [ -6.987305, 67.542167 ], [ -10.546875, 67.152898 ], [ -13.139648, 68.220523 ], [ -11.997070, 69.778952 ], [ -7.954102, 70.170201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823907fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.459961, 41.310824 ], [ -4.702148, 40.245992 ], [ -4.965820, 38.548165 ], [ -6.899414, 37.857507 ], [ -8.657227, 38.891033 ], [ -8.481445, 40.613952 ], [ -6.459961, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82352ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.654297, 44.496505 ], [ -18.500977, 43.644026 ], [ -18.457031, 41.869561 ], [ -20.434570, 40.946714 ], [ -22.587891, 41.771312 ], [ -22.719727, 43.548548 ], [ -20.654297, 44.496505 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82392ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.174805, 43.612217 ], [ -2.416992, 42.553080 ], [ -2.724609, 40.880295 ], [ -4.702148, 40.245992 ], [ -6.459961, 41.310824 ], [ -6.240234, 43.004647 ], [ -4.174805, 43.612217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.457031, 41.869561 ], [ -16.391602, 40.979898 ], [ -16.391602, 39.198205 ], [ -18.369141, 38.307181 ], [ -20.346680, 39.164141 ], [ -20.434570, 40.946714 ], [ -18.457031, 41.869561 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823927fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 44.056012 ], [ -6.240234, 43.004647 ], [ -6.459961, 41.310824 ], [ -8.481445, 40.613952 ], [ -10.327148, 41.640078 ], [ -10.195312, 43.357138 ], [ -8.085938, 44.056012 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 41.836828 ], [ -12.392578, 40.880295 ], [ -12.480469, 39.095963 ], [ -14.458008, 38.307181 ], [ -16.391602, 39.198205 ], [ -16.391602, 40.979898 ], [ -14.370117, 41.836828 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 44.496505 ], [ -14.282227, 43.580391 ], [ -14.370117, 41.836828 ], [ -16.391602, 40.979898 ], [ -18.457031, 41.869561 ], [ -18.500977, 43.644026 ], [ -16.391602, 44.496505 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.172852, 44.339565 ], [ -10.195312, 43.357138 ], [ -10.327148, 41.640078 ], [ -12.392578, 40.880295 ], [ -14.370117, 41.836828 ], [ -14.282227, 43.580391 ], [ -12.172852, 44.339565 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823937fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.327148, 41.640078 ], [ -8.481445, 40.613952 ], [ -8.657227, 38.891033 ], [ -10.634766, 38.134557 ], [ -12.480469, 39.095963 ], [ -12.392578, 40.880295 ], [ -10.327148, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82074ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.313477, 63.821288 ], [ -18.720703, 62.915233 ], [ -19.248047, 61.333540 ], [ -22.060547, 60.608542 ], [ -24.565430, 61.438767 ], [ -24.389648, 63.054959 ], [ -21.313477, 63.821288 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82188ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.005859, 49.610710 ], [ -18.632812, 48.806863 ], [ -18.588867, 47.100045 ], [ -20.742188, 46.225453 ], [ -23.027344, 47.010226 ], [ -23.203125, 48.719961 ], [ -21.005859, 49.610710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821827fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.745117, 56.389584 ], [ -6.416016, 55.379110 ], [ -6.723633, 53.852527 ], [ -9.184570, 53.278353 ], [ -11.469727, 54.265224 ], [ -11.337891, 55.825973 ], [ -8.745117, 56.389584 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821837fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.798828, 56.728622 ], [ -11.337891, 55.825973 ], [ -11.469727, 54.265224 ], [ -13.930664, 53.618579 ], [ -16.391602, 54.495568 ], [ -16.391602, 56.072035 ], [ -13.798828, 56.728622 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821987fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.840820, 59.153403 ], [ -19.072266, 58.401712 ], [ -18.984375, 56.872996 ], [ -21.533203, 56.096556 ], [ -24.257812, 56.800878 ], [ -24.477539, 58.332567 ], [ -21.840820, 59.153403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82190ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.844727, 58.355630 ], [ -3.515625, 57.326521 ], [ -3.911133, 55.850650 ], [ -6.416016, 55.379110 ], [ -8.745117, 56.389584 ], [ -8.525391, 57.891497 ], [ -5.844727, 58.355630 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821957fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.911133, 55.850650 ], [ -1.801758, 54.749991 ], [ -2.197266, 53.252069 ], [ -4.570312, 52.802761 ], [ -6.723633, 53.852527 ], [ -6.416016, 55.379110 ], [ -3.911133, 55.850650 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82198ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.984375, 56.872996 ], [ -16.391602, 56.072035 ], [ -16.391602, 54.495568 ], [ -18.852539, 53.748711 ], [ -21.401367, 54.521081 ], [ -21.533203, 56.096556 ], [ -18.984375, 56.872996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.401367, 54.521081 ], [ -18.852539, 53.748711 ], [ -18.764648, 52.133488 ], [ -21.137695, 51.289406 ], [ -23.598633, 52.052490 ], [ -23.818359, 53.670680 ], [ -21.401367, 54.521081 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821917fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.535156, 61.164437 ], [ -10.810547, 60.283408 ], [ -10.986328, 58.836490 ], [ -13.710938, 58.240164 ], [ -16.391602, 59.108308 ], [ -16.391602, 60.565379 ], [ -13.535156, 61.164437 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82191ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.986328, 58.836490 ], [ -8.525391, 57.891497 ], [ -8.745117, 56.389584 ], [ -11.337891, 55.825973 ], [ -13.798828, 56.728622 ], [ -13.710938, 58.240164 ], [ -10.986328, 58.836490 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821927fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.790039, 62.573106 ], [ -2.285156, 61.543641 ], [ -2.724609, 60.174306 ], [ -5.493164, 59.800634 ], [ -7.998047, 60.780619 ], [ -7.734375, 62.165502 ], [ -4.790039, 62.573106 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82076ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.688477, 63.548552 ], [ -13.447266, 62.593341 ], [ -13.535156, 61.164437 ], [ -16.391602, 60.565379 ], [ -19.248047, 61.333540 ], [ -18.720703, 62.915233 ], [ -15.688477, 63.548552 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820747fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.534180, 66.089364 ], [ -14.941406, 65.109148 ], [ -15.688477, 63.548552 ], [ -18.720703, 62.915233 ], [ -21.313477, 63.821288 ], [ -20.917969, 65.440002 ], [ -17.534180, 66.089364 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820767fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.645508, 65.640155 ], [ -9.404297, 64.586185 ], [ -10.458984, 63.094758 ], [ -13.447266, 62.593341 ], [ -15.688477, 63.548552 ], [ -14.941406, 65.109148 ], [ -11.645508, 65.640155 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821937fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.094758 ], [ -7.734375, 62.165502 ], [ -7.998047, 60.780619 ], [ -10.810547, 60.283408 ], [ -13.535156, 61.164437 ], [ -13.447266, 62.593341 ], [ -10.458984, 63.094758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8219a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.248047, 61.333540 ], [ -16.391602, 60.565379 ], [ -16.391602, 59.108308 ], [ -19.072266, 58.401712 ], [ -21.840820, 59.153403 ], [ -22.060547, 60.608542 ], [ -19.248047, 61.333540 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8219affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 59.108308 ], [ -13.710938, 58.240164 ], [ -13.798828, 56.728622 ], [ -16.391602, 56.072035 ], [ -18.984375, 56.872996 ], [ -19.072266, 58.401712 ], [ -16.391602, 59.108308 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820937fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 64.979359 ], [ -4.394531, 63.898731 ], [ -4.790039, 62.573106 ], [ -7.734375, 62.165502 ], [ -10.458984, 63.094758 ], [ -9.404297, 64.586185 ], [ -6.240234, 64.979359 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82192ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.724609, 60.174306 ], [ -0.483398, 59.108308 ], [ -0.922852, 57.680660 ], [ -3.515625, 57.326521 ], [ -5.844727, 58.355630 ], [ -5.493164, 59.800634 ], [ -2.724609, 60.174306 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821907fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 60.780619 ], [ -5.493164, 59.800634 ], [ -5.844727, 58.355630 ], [ -8.525391, 57.891497 ], [ -10.986328, 58.836490 ], [ -10.810547, 60.283408 ], [ -7.998047, 60.780619 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 49.610710 ], [ -14.150391, 48.690960 ], [ -14.194336, 47.010226 ], [ -16.391602, 46.225453 ], [ -18.588867, 47.100045 ], [ -18.632812, 48.806863 ], [ -16.391602, 49.610710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.764648, 52.133488 ], [ -16.391602, 51.261915 ], [ -16.391602, 49.610710 ], [ -18.632812, 48.806863 ], [ -21.005859, 49.610710 ], [ -21.137695, 51.289406 ], [ -18.764648, 52.133488 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82180ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 51.699800 ], [ -7.207031, 50.680797 ], [ -7.470703, 49.066668 ], [ -9.711914, 48.429201 ], [ -11.865234, 49.410973 ], [ -11.733398, 51.069017 ], [ -9.360352, 51.699800 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.887695, 46.769968 ], [ -7.910156, 45.736860 ], [ -8.085938, 44.056012 ], [ -10.195312, 43.357138 ], [ -12.172852, 44.339565 ], [ -12.084961, 46.042736 ], [ -9.887695, 46.769968 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82181ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.018555, 51.998410 ], [ -11.733398, 51.069017 ], [ -11.865234, 49.410973 ], [ -14.150391, 48.690960 ], [ -16.391602, 49.610710 ], [ -16.391602, 51.261915 ], [ -14.018555, 51.998410 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.865234, 49.410973 ], [ -9.711914, 48.429201 ], [ -9.887695, 46.769968 ], [ -12.084961, 46.042736 ], [ -14.194336, 47.010226 ], [ -14.150391, 48.690960 ], [ -11.865234, 49.410973 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821877fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.877930, 51.234407 ], [ -2.900391, 50.148746 ], [ -3.251953, 48.545705 ], [ -5.449219, 48.019324 ], [ -7.470703, 49.066668 ], [ -7.207031, 50.680797 ], [ -4.877930, 51.234407 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821857fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.470703, 49.066668 ], [ -5.449219, 48.019324 ], [ -5.712891, 46.346928 ], [ -7.910156, 45.736860 ], [ -9.887695, 46.769968 ], [ -9.711914, 48.429201 ], [ -7.470703, 49.066668 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821807fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 54.265224 ], [ -9.184570, 53.278353 ], [ -9.360352, 51.699800 ], [ -11.733398, 51.069017 ], [ -14.018555, 51.998410 ], [ -13.930664, 53.618579 ], [ -11.469727, 54.265224 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821817fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 54.495568 ], [ -13.930664, 53.618579 ], [ -14.018555, 51.998410 ], [ -16.391602, 51.261915 ], [ -18.764648, 52.133488 ], [ -18.852539, 53.748711 ], [ -16.391602, 54.495568 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.194336, 47.010226 ], [ -12.084961, 46.042736 ], [ -12.172852, 44.339565 ], [ -14.282227, 43.580391 ], [ -16.391602, 44.496505 ], [ -16.391602, 46.225453 ], [ -14.194336, 47.010226 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8218d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.588867, 47.100045 ], [ -16.391602, 46.225453 ], [ -16.391602, 44.496505 ], [ -18.500977, 43.644026 ], [ -20.654297, 44.496505 ], [ -20.742188, 46.225453 ], [ -18.588867, 47.100045 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82195ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.197266, 53.252069 ], [ -0.219727, 52.133488 ], [ -0.615234, 50.597186 ], [ -2.900391, 50.148746 ], [ -4.877930, 51.234407 ], [ -4.570312, 52.802761 ], [ -2.197266, 53.252069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82182ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.723633, 53.852527 ], [ -4.570312, 52.802761 ], [ -4.877930, 51.234407 ], [ -7.207031, 50.680797 ], [ -9.360352, 51.699800 ], [ -9.184570, 53.278353 ], [ -6.723633, 53.852527 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821847fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.251953, 48.545705 ], [ -1.406250, 47.457809 ], [ -1.757812, 45.828799 ], [ -3.867188, 45.274886 ], [ -5.712891, 46.346928 ], [ -5.449219, 48.019324 ], [ -3.251953, 48.545705 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82185ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.712891, 46.346928 ], [ -3.867188, 45.274886 ], [ -4.174805, 43.612217 ], [ -6.240234, 43.004647 ], [ -8.085938, 44.056012 ], [ -7.910156, 45.736860 ], [ -5.712891, 46.346928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82184ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 45.828799 ], [ -0.043945, 44.715514 ], [ -0.395508, 43.100983 ], [ -2.416992, 42.553080 ], [ -4.174805, 43.612217 ], [ -3.867188, 45.274886 ], [ -1.757812, 45.828799 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82550ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.975586, 23.322080 ], [ -8.481445, 22.431340 ], [ -8.613281, 20.797201 ], [ -10.195312, 19.973349 ], [ -11.689453, 20.797201 ], [ -11.601562, 22.471955 ], [ -9.975586, 23.322080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827cc7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.840820, 8.450639 ], [ -20.346680, 7.798079 ], [ -20.039062, 6.227934 ], [ -21.181641, 5.222247 ], [ -22.675781, 5.834616 ], [ -22.983398, 7.449624 ], [ -21.840820, 8.450639 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.823242, 23.079732 ], [ -2.504883, 22.187405 ], [ -2.724609, 20.591652 ], [ -4.262695, 19.890723 ], [ -5.625000, 20.715015 ], [ -5.405273, 22.350076 ], [ -3.823242, 23.079732 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8255affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 23.281719 ], [ -14.765625, 22.471955 ], [ -14.809570, 20.756114 ], [ -16.391602, 19.890723 ], [ -17.973633, 20.673905 ], [ -18.017578, 22.390714 ], [ -16.391602, 23.281719 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82551ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.139648, 23.322080 ], [ -11.601562, 22.471955 ], [ -11.689453, 20.797201 ], [ -13.271484, 19.973349 ], [ -14.809570, 20.756114 ], [ -14.765625, 22.471955 ], [ -13.139648, 23.322080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 23.241346 ], [ -5.405273, 22.350076 ], [ -5.625000, 20.715015 ], [ -7.163086, 19.932041 ], [ -8.613281, 20.797201 ], [ -8.481445, 22.431340 ], [ -6.855469, 23.241346 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82559ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.225586, 20.509355 ], [ -19.555664, 19.766704 ], [ -19.511719, 18.104087 ], [ -21.049805, 17.182779 ], [ -22.631836, 17.895114 ], [ -22.763672, 19.559790 ], [ -21.225586, 20.509355 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8255b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.489258, 25.681137 ], [ -19.731445, 24.886436 ], [ -19.687500, 23.160563 ], [ -21.313477, 22.228090 ], [ -22.983398, 22.998852 ], [ -23.115234, 24.726875 ], [ -21.489258, 25.681137 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.796875, 31.015279 ], [ -19.951172, 30.221102 ], [ -19.863281, 28.420391 ], [ -21.577148, 27.449790 ], [ -23.378906, 28.226970 ], [ -23.554688, 30.031055 ], [ -21.796875, 31.015279 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.687500, 23.160563 ], [ -18.017578, 22.390714 ], [ -17.973633, 20.673905 ], [ -19.555664, 19.766704 ], [ -21.225586, 20.509355 ], [ -21.313477, 22.228090 ], [ -19.687500, 23.160563 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8239a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.722656, 36.385913 ], [ -9.008789, 35.389050 ], [ -9.140625, 33.651208 ], [ -10.986328, 32.879587 ], [ -12.744141, 33.797409 ], [ -12.656250, 35.567980 ], [ -10.722656, 36.385913 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 39.198205 ], [ -14.458008, 38.307181 ], [ -14.501953, 36.527295 ], [ -16.391602, 35.639441 ], [ -18.325195, 36.527295 ], [ -18.369141, 38.307181 ], [ -16.391602, 39.198205 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.346680, 39.164141 ], [ -18.369141, 38.307181 ], [ -18.325195, 36.527295 ], [ -20.170898, 35.603719 ], [ -22.148438, 36.421282 ], [ -22.280273, 38.203655 ], [ -20.346680, 39.164141 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 33.870416 ], [ -14.589844, 32.953368 ], [ -14.589844, 31.165810 ], [ -16.391602, 30.297018 ], [ -18.193359, 31.165810 ], [ -18.237305, 32.953368 ], [ -16.391602, 33.870416 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.580078, 28.420391 ], [ -7.998047, 27.488781 ], [ -8.173828, 25.799891 ], [ -9.843750, 25.005973 ], [ -11.381836, 25.878994 ], [ -11.293945, 27.605671 ], [ -9.580078, 28.420391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82355ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.325195, 36.527295 ], [ -16.391602, 35.639441 ], [ -16.391602, 33.870416 ], [ -18.237305, 32.953368 ], [ -20.126953, 33.797409 ], [ -20.170898, 35.603719 ], [ -18.325195, 36.527295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.381836, 25.878994 ], [ -9.843750, 25.005973 ], [ -9.975586, 23.322080 ], [ -11.601562, 22.471955 ], [ -13.139648, 23.322080 ], [ -13.095703, 25.045792 ], [ -11.381836, 25.878994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82356ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.480469, 39.095963 ], [ -10.634766, 38.134557 ], [ -10.722656, 36.385913 ], [ -12.656250, 35.567980 ], [ -14.501953, 36.527295 ], [ -14.458008, 38.307181 ], [ -12.480469, 39.095963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823997fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 31.090574 ], [ -9.448242, 30.183122 ], [ -9.580078, 28.420391 ], [ -11.293945, 27.605671 ], [ -12.963867, 28.497661 ], [ -12.875977, 30.259067 ], [ -11.074219, 31.090574 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82398ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.668945, 33.394759 ], [ -4.086914, 32.398516 ], [ -4.350586, 30.713504 ], [ -6.108398, 29.993002 ], [ -7.646484, 30.939924 ], [ -7.470703, 32.657876 ], [ -5.668945, 33.394759 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823987fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.140625, 33.651208 ], [ -7.470703, 32.657876 ], [ -7.646484, 30.939924 ], [ -9.448242, 30.183122 ], [ -11.074219, 31.090574 ], [ -10.986328, 32.879587 ], [ -9.140625, 33.651208 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.126953, 33.797409 ], [ -18.237305, 32.953368 ], [ -18.193359, 31.165810 ], [ -19.951172, 30.221102 ], [ -21.796875, 31.015279 ], [ -21.928711, 32.805745 ], [ -20.126953, 33.797409 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8239b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.744141, 33.797409 ], [ -10.986328, 32.879587 ], [ -11.074219, 31.090574 ], [ -12.875977, 30.259067 ], [ -14.589844, 31.165810 ], [ -14.589844, 32.953368 ], [ -12.744141, 33.797409 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823817fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.329102, 33.063924 ], [ -0.834961, 32.063956 ], [ -1.142578, 30.372875 ], [ -2.856445, 29.726222 ], [ -4.350586, 30.713504 ], [ -4.086914, 32.398516 ], [ -2.329102, 33.063924 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82354ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.501953, 36.527295 ], [ -12.656250, 35.567980 ], [ -12.744141, 33.797409 ], [ -14.589844, 32.953368 ], [ -16.391602, 33.870416 ], [ -16.391602, 35.639441 ], [ -14.501953, 36.527295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82345ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.863281, 28.420391 ], [ -18.105469, 27.605671 ], [ -18.105469, 25.839449 ], [ -19.731445, 24.886436 ], [ -21.489258, 25.681137 ], [ -21.577148, 27.449790 ], [ -19.863281, 28.420391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.193359, 31.165810 ], [ -16.391602, 30.297018 ], [ -16.391602, 28.497661 ], [ -18.105469, 27.605671 ], [ -19.863281, 28.420391 ], [ -19.951172, 30.221102 ], [ -18.193359, 31.165810 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82344ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 28.497661 ], [ -14.677734, 27.644606 ], [ -14.721680, 25.918526 ], [ -16.391602, 25.005973 ], [ -18.105469, 25.839449 ], [ -18.105469, 27.605671 ], [ -16.391602, 28.497661 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8255a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.105469, 25.839449 ], [ -16.391602, 25.005973 ], [ -16.391602, 23.281719 ], [ -18.017578, 22.390714 ], [ -19.687500, 23.160563 ], [ -19.731445, 24.886436 ], [ -18.105469, 25.839449 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.963867, 28.497661 ], [ -11.293945, 27.605671 ], [ -11.381836, 25.878994 ], [ -13.095703, 25.045792 ], [ -14.721680, 25.918526 ], [ -14.677734, 27.644606 ], [ -12.963867, 28.497661 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82346ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 31.165810 ], [ -12.875977, 30.259067 ], [ -12.963867, 28.497661 ], [ -14.677734, 27.644606 ], [ -16.391602, 28.497661 ], [ -16.391602, 30.297018 ], [ -14.589844, 31.165810 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 25.918526 ], [ -13.095703, 25.045792 ], [ -13.139648, 23.322080 ], [ -14.765625, 22.471955 ], [ -16.391602, 23.281719 ], [ -16.391602, 25.005973 ], [ -14.721680, 25.918526 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8239affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.119141, 36.137875 ], [ -5.449219, 35.137879 ], [ -5.668945, 33.394759 ], [ -7.470703, 32.657876 ], [ -9.140625, 33.651208 ], [ -9.008789, 35.389050 ], [ -7.119141, 36.137875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82391ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 38.548165 ], [ -3.295898, 37.509726 ], [ -3.603516, 35.817813 ], [ -5.449219, 35.137879 ], [ -7.119141, 36.137875 ], [ -6.899414, 37.857507 ], [ -4.965820, 38.548165 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823917fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 38.891033 ], [ -6.899414, 37.857507 ], [ -7.119141, 36.137875 ], [ -9.008789, 35.389050 ], [ -10.722656, 36.385913 ], [ -10.634766, 38.134557 ], [ -8.657227, 38.891033 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823837fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.603516, 35.817813 ], [ -2.021484, 34.741612 ], [ -2.329102, 33.063924 ], [ -4.086914, 32.398516 ], [ -5.668945, 33.394759 ], [ -5.449219, 35.137879 ], [ -3.603516, 35.817813 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82390ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.724609, 40.880295 ], [ -1.098633, 39.774769 ], [ -1.406250, 38.099983 ], [ -3.295898, 37.509726 ], [ -4.965820, 38.548165 ], [ -4.702148, 40.245992 ], [ -2.724609, 40.880295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.284180, 28.265682 ], [ -4.790039, 27.332735 ], [ -5.009766, 25.641526 ], [ -6.679688, 24.886436 ], [ -8.173828, 25.799891 ], [ -7.998047, 27.488781 ], [ -6.284180, 28.265682 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823887fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.120117, 28.033198 ], [ -1.713867, 27.059126 ], [ -1.977539, 25.443275 ], [ -3.603516, 24.726875 ], [ -5.009766, 25.641526 ], [ -4.790039, 27.332735 ], [ -3.120117, 28.033198 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82399ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 30.939924 ], [ -6.108398, 29.993002 ], [ -6.284180, 28.265682 ], [ -7.998047, 27.488781 ], [ -9.580078, 28.420391 ], [ -9.448242, 30.183122 ], [ -7.646484, 30.939924 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.350586, 30.713504 ], [ -2.856445, 29.726222 ], [ -3.120117, 28.033198 ], [ -4.790039, 27.332735 ], [ -6.284180, 28.265682 ], [ -6.108398, 29.993002 ], [ -4.350586, 30.713504 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823897fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.641526 ], [ -3.603516, 24.726875 ], [ -3.823242, 23.079732 ], [ -5.405273, 22.350076 ], [ -6.855469, 23.241346 ], [ -6.679688, 24.886436 ], [ -5.009766, 25.641526 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82552ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.173828, 25.799891 ], [ -6.679688, 24.886436 ], [ -6.855469, 23.241346 ], [ -8.481445, 22.431340 ], [ -9.975586, 23.322080 ], [ -9.843750, 25.005973 ], [ -8.173828, 25.799891 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82389ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.977539, 25.443275 ], [ -0.659180, 24.327077 ], [ -0.922852, 22.715390 ], [ -2.504883, 22.187405 ], [ -3.823242, 23.079732 ], [ -3.603516, 24.726875 ], [ -1.977539, 25.443275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82759ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 5.090944 ], [ -9.887695, 4.521666 ], [ -9.624023, 3.030812 ], [ -10.546875, 2.064982 ], [ -11.821289, 2.635789 ], [ -12.128906, 4.171115 ], [ -11.118164, 5.090944 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825997fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.416992, 13.368243 ], [ -1.230469, 12.297068 ], [ -1.494141, 10.833306 ], [ -2.856445, 10.487812 ], [ -3.999023, 11.566144 ], [ -3.823242, 12.983148 ], [ -2.416992, 13.368243 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.128906, 11.350797 ], [ -10.810547, 10.660608 ], [ -10.898438, 9.232249 ], [ -12.260742, 8.450639 ], [ -13.623047, 9.102097 ], [ -13.579102, 10.531020 ], [ -12.128906, 11.350797 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.929688, 15.749963 ], [ -16.391602, 14.987240 ], [ -16.391602, 13.453737 ], [ -17.841797, 12.597455 ], [ -19.335938, 13.282719 ], [ -19.423828, 14.859850 ], [ -17.929688, 15.749963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827597fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.348633, 7.057282 ], [ -11.074219, 6.402648 ], [ -11.118164, 5.090944 ], [ -12.128906, 4.171115 ], [ -13.403320, 4.740675 ], [ -13.710938, 6.271618 ], [ -12.348633, 7.057282 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 13.453737 ], [ -14.941406, 12.726084 ], [ -14.985352, 11.221510 ], [ -16.391602, 10.401378 ], [ -17.841797, 11.049038 ], [ -17.841797, 12.597455 ], [ -16.391602, 13.453737 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82546ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.053711, 13.710035 ], [ -3.823242, 12.983148 ], [ -3.999023, 11.566144 ], [ -5.405273, 10.790141 ], [ -6.635742, 11.523088 ], [ -6.503906, 12.983148 ], [ -5.053711, 13.710035 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.689453, 20.797201 ], [ -10.195312, 19.973349 ], [ -10.283203, 18.354526 ], [ -11.821289, 17.518344 ], [ -13.315430, 18.312811 ], [ -13.271484, 19.973349 ], [ -11.689453, 20.797201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 18.229351 ], [ -14.853516, 17.476432 ], [ -14.897461, 15.876809 ], [ -16.391602, 14.987240 ], [ -17.929688, 15.749963 ], [ -17.929688, 17.350638 ], [ -16.391602, 18.229351 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82558ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.973633, 20.673905 ], [ -16.391602, 19.890723 ], [ -16.391602, 18.229351 ], [ -17.929688, 17.350638 ], [ -19.511719, 18.104087 ], [ -19.555664, 19.766704 ], [ -17.973633, 20.673905 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.491211, 13.539201 ], [ -12.084961, 12.854649 ], [ -12.128906, 11.350797 ], [ -13.579102, 10.531020 ], [ -14.985352, 11.221510 ], [ -14.941406, 12.726084 ], [ -13.491211, 13.539201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.999023, 11.566144 ], [ -2.856445, 10.487812 ], [ -3.076172, 9.058702 ], [ -4.394531, 8.754795 ], [ -5.581055, 9.405710 ], [ -5.405273, 10.790141 ], [ -3.999023, 11.566144 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.511719, 18.104087 ], [ -17.929688, 17.350638 ], [ -17.929688, 15.749963 ], [ -19.423828, 14.859850 ], [ -20.961914, 15.538376 ], [ -21.049805, 17.182779 ], [ -19.511719, 18.104087 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82540ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.909180, 15.961329 ], [ -10.502930, 15.199386 ], [ -10.590820, 13.624633 ], [ -12.084961, 12.854649 ], [ -13.491211, 13.539201 ], [ -13.447266, 15.114553 ], [ -11.909180, 15.961329 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.985352, 11.221510 ], [ -13.579102, 10.531020 ], [ -13.623047, 9.102097 ], [ -15.029297, 8.276727 ], [ -16.391602, 8.928487 ], [ -16.391602, 10.401378 ], [ -14.985352, 11.221510 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82542ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.283203, 18.354526 ], [ -8.876953, 17.560247 ], [ -9.008789, 16.003576 ], [ -10.502930, 15.199386 ], [ -11.909180, 15.961329 ], [ -11.821289, 17.518344 ], [ -10.283203, 18.354526 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82548ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.335938, 13.282719 ], [ -17.841797, 12.597455 ], [ -17.841797, 11.049038 ], [ -19.248047, 10.228437 ], [ -20.742188, 10.876465 ], [ -20.786133, 12.425848 ], [ -19.335938, 13.282719 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8275b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.898438, 9.232249 ], [ -9.580078, 8.581021 ], [ -9.711914, 7.188101 ], [ -11.074219, 6.402648 ], [ -12.348633, 7.057282 ], [ -12.260742, 8.450639 ], [ -10.898438, 9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.590820, 13.624633 ], [ -9.272461, 12.940322 ], [ -9.360352, 11.436955 ], [ -10.810547, 10.660608 ], [ -12.128906, 11.350797 ], [ -12.084961, 12.854649 ], [ -10.590820, 13.624633 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82545ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 11.436955 ], [ -8.085938, 10.746969 ], [ -8.217773, 9.318990 ], [ -9.580078, 8.581021 ], [ -10.898438, 9.232249 ], [ -10.810547, 10.660608 ], [ -9.360352, 11.436955 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.315430, 18.312811 ], [ -11.821289, 17.518344 ], [ -11.909180, 15.961329 ], [ -13.447266, 15.114553 ], [ -14.897461, 15.876809 ], [ -14.853516, 17.476432 ], [ -13.315430, 18.312811 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.778320, 13.710035 ], [ -6.503906, 12.983148 ], [ -6.635742, 11.523088 ], [ -8.085938, 10.746969 ], [ -9.360352, 11.436955 ], [ -9.272461, 12.940322 ], [ -7.778320, 13.710035 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82544ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.635742, 11.523088 ], [ -5.405273, 10.790141 ], [ -5.581055, 9.405710 ], [ -6.943359, 8.667918 ], [ -8.217773, 9.318990 ], [ -8.085938, 10.746969 ], [ -6.635742, 11.523088 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.961914, 15.538376 ], [ -19.423828, 14.859850 ], [ -19.335938, 13.282719 ], [ -20.786133, 12.425848 ], [ -22.324219, 13.068777 ], [ -22.412109, 14.647368 ], [ -20.961914, 15.538376 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 20.756114 ], [ -13.271484, 19.973349 ], [ -13.315430, 18.312811 ], [ -14.853516, 17.476432 ], [ -16.391602, 18.229351 ], [ -16.391602, 19.890723 ], [ -14.809570, 20.756114 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82541ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.897461, 15.876809 ], [ -13.447266, 15.114553 ], [ -13.491211, 13.539201 ], [ -14.941406, 12.726084 ], [ -16.391602, 13.453737 ], [ -16.391602, 14.987240 ], [ -14.897461, 15.876809 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827cf7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.039062, 6.227934 ], [ -18.588867, 5.572250 ], [ -18.281250, 3.995781 ], [ -19.423828, 2.986927 ], [ -20.874023, 3.601142 ], [ -21.181641, 5.222247 ], [ -20.039062, 6.227934 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.841797, 11.049038 ], [ -16.391602, 10.401378 ], [ -16.391602, 8.928487 ], [ -17.797852, 8.102739 ], [ -19.204102, 8.754795 ], [ -19.248047, 10.228437 ], [ -17.841797, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.029297, 6.882800 ], [ -13.710938, 6.271618 ], [ -13.403320, 4.740675 ], [ -14.458008, 3.776559 ], [ -15.820312, 4.390229 ], [ -16.083984, 5.965754 ], [ -15.029297, 6.882800 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.391602, 8.928487 ], [ -15.029297, 8.276727 ], [ -15.029297, 6.882800 ], [ -16.083984, 5.965754 ], [ -17.490234, 6.577303 ], [ -17.797852, 8.102739 ], [ -16.391602, 8.928487 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827caffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.281250, 3.995781 ], [ -16.875000, 3.381824 ], [ -16.567383, 1.801461 ], [ -17.666016, 0.790990 ], [ -19.116211, 1.362176 ], [ -19.423828, 2.986927 ], [ -18.281250, 3.995781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827cdffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.742188, 10.876465 ], [ -19.248047, 10.228437 ], [ -19.204102, 8.754795 ], [ -20.346680, 7.798079 ], [ -21.840820, 8.450639 ], [ -22.148438, 10.012130 ], [ -20.742188, 10.876465 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827cd7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.204102, 8.754795 ], [ -17.797852, 8.102739 ], [ -17.490234, 6.577303 ], [ -18.588867, 5.572250 ], [ -20.039062, 6.227934 ], [ -20.346680, 7.798079 ], [ -19.204102, 8.754795 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.490234, 6.577303 ], [ -16.083984, 5.965754 ], [ -15.820312, 4.390229 ], [ -16.875000, 3.381824 ], [ -18.281250, 3.995781 ], [ -18.588867, 5.572250 ], [ -17.490234, 6.577303 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.874023, 3.601142 ], [ -19.423828, 2.986927 ], [ -19.116211, 1.362176 ], [ -20.258789, 0.307616 ], [ -21.752930, 0.878872 ], [ -22.060547, 2.547988 ], [ -20.874023, 3.601142 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8254cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.623047, 9.102097 ], [ -12.260742, 8.450639 ], [ -12.348633, 7.057282 ], [ -13.710938, 6.271618 ], [ -15.029297, 6.882800 ], [ -15.029297, 8.276727 ], [ -13.623047, 9.102097 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 4.390229 ], [ -14.458008, 3.776559 ], [ -14.150391, 2.240640 ], [ -15.205078, 1.230374 ], [ -16.567383, 1.801461 ], [ -16.875000, 3.381824 ], [ -15.820312, 4.390229 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827c97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.403320, 4.740675 ], [ -12.128906, 4.171115 ], [ -11.821289, 2.635789 ], [ -12.832031, 1.669686 ], [ -14.150391, 2.240640 ], [ -14.458008, 3.776559 ], [ -13.403320, 4.740675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82555ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.338867, 18.354526 ], [ -5.976562, 17.560247 ], [ -6.152344, 16.003576 ], [ -7.646484, 15.241790 ], [ -9.008789, 16.003576 ], [ -8.876953, 17.560247 ], [ -7.338867, 18.354526 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.613281, 20.797201 ], [ -7.163086, 19.932041 ], [ -7.338867, 18.354526 ], [ -8.876953, 17.560247 ], [ -10.283203, 18.354526 ], [ -10.195312, 19.973349 ], [ -8.613281, 20.797201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.152344, 16.003576 ], [ -4.877930, 15.199386 ], [ -5.053711, 13.710035 ], [ -6.503906, 12.983148 ], [ -7.778320, 13.710035 ], [ -7.646484, 15.241790 ], [ -6.152344, 16.003576 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 20.715015 ], [ -4.262695, 19.890723 ], [ -4.482422, 18.312811 ], [ -5.976562, 17.560247 ], [ -7.338867, 18.354526 ], [ -7.163086, 19.932041 ], [ -5.625000, 20.715015 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82554ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.482422, 18.312811 ], [ -3.164062, 17.476432 ], [ -3.383789, 15.961329 ], [ -4.877930, 15.199386 ], [ -6.152344, 16.003576 ], [ -5.976562, 17.560247 ], [ -4.482422, 18.312811 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8259a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.713867, 17.936929 ], [ -0.483398, 16.804541 ], [ -0.747070, 15.284185 ], [ -2.197266, 14.859850 ], [ -3.383789, 15.961329 ], [ -3.164062, 17.476432 ], [ -1.713867, 17.936929 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.008789, 16.003576 ], [ -7.646484, 15.241790 ], [ -7.778320, 13.710035 ], [ -9.272461, 12.940322 ], [ -10.590820, 13.624633 ], [ -10.502930, 15.199386 ], [ -9.008789, 16.003576 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82556ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.724609, 20.591652 ], [ -1.450195, 19.518375 ], [ -1.713867, 17.936929 ], [ -3.164062, 17.476432 ], [ -4.482422, 18.312811 ], [ -4.262695, 19.890723 ], [ -2.724609, 20.591652 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8259b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.383789, 15.961329 ], [ -2.197266, 14.859850 ], [ -2.416992, 13.368243 ], [ -3.823242, 12.983148 ], [ -5.053711, 13.710035 ], [ -4.877930, 15.199386 ], [ -3.383789, 15.961329 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82751ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.570312, 7.406048 ], [ -3.471680, 6.358975 ], [ -3.647461, 5.047171 ], [ -4.921875, 4.784469 ], [ -6.064453, 5.353521 ], [ -5.888672, 6.664608 ], [ -4.570312, 7.406048 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82750ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.153320, 6.664608 ], [ -1.054688, 5.572250 ], [ -1.274414, 4.258768 ], [ -2.592773, 4.039618 ], [ -3.647461, 5.047171 ], [ -3.471680, 6.358975 ], [ -2.153320, 6.664608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.097656, 3.513421 ], [ -4.042969, 2.547988 ], [ -4.658203, 1.230374 ], [ -6.108398, 1.406109 ], [ -6.372070, 2.811371 ], [ -5.097656, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 5.353521 ], [ -4.921875, 4.784469 ], [ -5.097656, 3.513421 ], [ -6.372070, 2.811371 ], [ -7.514648, 3.381824 ], [ -7.382812, 4.653080 ], [ -6.064453, 5.353521 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8275affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.119141, 7.275292 ], [ -5.888672, 6.664608 ], [ -6.064453, 5.353521 ], [ -7.382812, 4.653080 ], [ -8.569336, 5.222247 ], [ -8.437500, 6.577303 ], [ -7.119141, 7.275292 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8275a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.217773, 9.318990 ], [ -6.943359, 8.667918 ], [ -7.119141, 7.275292 ], [ -8.437500, 6.577303 ], [ -9.711914, 7.188101 ], [ -9.580078, 8.581021 ], [ -8.217773, 9.318990 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.581055, 9.405710 ], [ -4.394531, 8.754795 ], [ -4.570312, 7.406048 ], [ -5.888672, 6.664608 ], [ -7.119141, 7.275292 ], [ -6.943359, 8.667918 ], [ -5.581055, 9.405710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.711914, 7.188101 ], [ -8.437500, 6.577303 ], [ -8.569336, 5.222247 ], [ -9.887695, 4.521666 ], [ -11.118164, 5.090944 ], [ -11.074219, 6.402648 ], [ -9.711914, 7.188101 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.514648, 3.381824 ], [ -6.372070, 2.811371 ], [ -6.108398, 1.406109 ], [ -6.987305, 0.483393 ], [ -8.129883, 1.010690 ], [ -8.393555, 2.460181 ], [ -7.514648, 3.381824 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8274a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.624023, 3.030812 ], [ -8.393555, 2.460181 ], [ -8.129883, 1.010690 ], [ -9.052734, 0.043945 ], [ -10.283203, 0.571280 ], [ -10.546875, 2.064982 ], [ -9.624023, 3.030812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82758ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.569336, 5.222247 ], [ -7.382812, 4.653080 ], [ -7.514648, 3.381824 ], [ -8.393555, 2.460181 ], [ -9.624023, 3.030812 ], [ -9.887695, 4.521666 ], [ -8.569336, 5.222247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.494141, 10.833306 ], [ -0.307617, 9.752370 ], [ -0.571289, 8.320212 ], [ -1.933594, 8.015716 ], [ -3.076172, 9.058702 ], [ -2.856445, 10.487812 ], [ -1.494141, 10.833306 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.076172, 9.058702 ], [ -1.933594, 8.015716 ], [ -2.153320, 6.664608 ], [ -3.471680, 6.358975 ], [ -4.570312, 7.406048 ], [ -4.394531, 8.754795 ], [ -3.076172, 9.058702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.647461, 5.047171 ], [ -2.592773, 4.039618 ], [ -2.768555, 2.767478 ], [ -4.042969, 2.547988 ], [ -5.097656, 3.513421 ], [ -4.921875, 4.784469 ], [ -3.647461, 5.047171 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82742ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.768555, 2.767478 ], [ -2.153320, 1.625758 ], [ -2.768555, 0.307616 ], [ -4.042969, 0.087891 ], [ -4.658203, 1.230374 ], [ -4.042969, 2.547988 ], [ -2.768555, 2.767478 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.274414, 4.258768 ], [ -0.175781, 3.250209 ], [ -0.834961, 1.889306 ], [ -2.153320, 1.625758 ], [ -2.768555, 2.767478 ], [ -2.592773, 4.039618 ], [ -1.274414, 4.258768 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8274f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.372070, -0.659165 ], [ -4.921875, -0.834931 ], [ -4.306641, -2.021065 ], [ -5.185547, -3.030812 ], [ -6.679688, -2.811371 ], [ -7.294922, -1.625758 ], [ -6.372070, -0.659165 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82082ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.118164, 67.858985 ], [ 14.809570, 67.356785 ], [ 15.512695, 66.107170 ], [ 12.919922, 65.421730 ], [ 9.580078, 65.874725 ], [ 8.525391, 67.067433 ], [ 11.118164, 67.858985 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821047fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "821147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.099609, 68.382996 ], [ 44.077148, 67.118748 ], [ 42.099609, 65.694476 ], [ 38.408203, 65.494741 ], [ 36.386719, 66.705169 ], [ 38.056641, 68.155209 ], [ 42.099609, 68.382996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82008ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:min:POP_EST": 56225, "tippecanoe:max:POP_EST": 361313, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.892578, 81.634149 ], [ 89.560547, 80.739423 ], [ 88.725586, 78.988187 ], [ 81.210938, 78.143526 ], [ 73.388672, 78.853070 ], [ 71.367188, 80.553733 ], [ 79.892578, 81.634149 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8225a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 48.136767 ], [ 91.625977, 47.100045 ], [ 91.362305, 45.367584 ], [ 89.121094, 44.621754 ], [ 87.099609, 45.614037 ], [ 87.275391, 47.368594 ], [ 89.560547, 48.136767 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:max:GDP_MD": 401, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:max:POP_EST": 113815, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "8200affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.127930, 80.942273 ], [ 71.367188, 80.553733 ], [ 73.388672, 78.853070 ], [ 67.500000, 77.702234 ], [ 59.677734, 78.025574 ], [ 55.766602, 79.560546 ], [ 61.127930, 80.942273 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82114ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 126438, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 31609.5, "tippecanoe:min:GDP_MD": 12520, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 5.25, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -344.924997, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": -86.23124925, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:sum:LABEL_Y": 51.215969, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 12.80399225, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:max:LABEL_Y": 14.794801, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 38, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 9.5, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 24, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 1.75, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 36.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9.125, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 16, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 38, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 4637283696, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320924, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:sum:POP_EST": 27792733, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 6948183.25, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:max:POP_EST": 9746117, "tippecanoe:sum:POP_RANK": 52, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 93699354, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:max:WOE_ID": 23424915, "tippecanoe:sum:WOE_ID_EH": 93699354, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:max:WOE_ID_EH": 23424915, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "821177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 66.705169 ], [ 38.408203, 65.494741 ], [ 36.870117, 64.014496 ], [ 33.574219, 63.724183 ], [ 31.508789, 64.867608 ], [ 32.783203, 66.372755 ], [ 36.386719, 66.705169 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.241211, 50.569283 ], [ 94.306641, 49.496675 ], [ 93.955078, 47.783635 ], [ 91.625977, 47.100045 ], [ 89.560547, 48.136767 ], [ 89.824219, 49.894634 ], [ 92.241211, 50.569283 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820597fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.300781, 69.224997 ], [ 123.266602, 69.005675 ], [ 124.936523, 67.356785 ], [ 122.124023, 66.000150 ], [ 117.817383, 66.196009 ], [ 115.751953, 67.759398 ], [ 118.300781, 69.224997 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.428711, 30.107118 ], [ 91.010742, 29.267233 ], [ 90.922852, 27.683528 ], [ 89.208984, 26.863281 ], [ 87.583008, 27.722436 ], [ 87.714844, 29.305561 ], [ 89.428711, 30.107118 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "822597fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 42.875964 ], [ 90.834961, 41.869561 ], [ 90.571289, 40.145289 ], [ 88.593750, 39.368279 ], [ 86.704102, 40.313043 ], [ 86.835938, 42.065607 ], [ 88.945312, 42.875964 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 67.958148 ], [ 27.026367, 66.998844 ], [ 26.103516, 65.494741 ], [ 23.071289, 64.979359 ], [ 20.742188, 65.892680 ], [ 21.357422, 67.390599 ], [ 24.609375, 67.958148 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82009ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3764975, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 627495.8333333334, "tippecanoe:min:GDP_MD": 3116, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -294, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -19.26472, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": -3.210786666666667, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:max:LABEL_X": 4.800448, "tippecanoe:sum:LABEL_Y": 324.136827, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 54.0228045, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:max:LABEL_Y": 62.185604, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 61, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 10.166666666666666, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 31, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 5.166666666666667, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 52.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.783333333333334, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 22.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.783333333333333, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 57, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:sum:NE_ID": 6955923964, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320660.6666668, "tippecanoe:min:NE_ID": 1159320389, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:sum:POP_EST": 83455958, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 13909326.333333334, "tippecanoe:min:POP_EST": 48678, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:sum:POP_RANK": 65, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 10.833333333333334, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -492, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -82, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 117123960, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 19520660, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:sum:WOE_ID_EH": 140549025, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424837.5, "tippecanoe:min:WOE_ID_EH": 23424757, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 2.6666666666666667, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 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": "820b97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.198242, 56.121060 ], [ 90.659180, 55.078367 ], [ 90.351562, 53.357109 ], [ 87.758789, 52.643063 ], [ 85.341797, 53.644638 ], [ 85.473633, 55.379110 ], [ 88.198242, 56.121060 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 14.859850 ], [ 90.043945, 13.880746 ], [ 89.956055, 12.082296 ], [ 88.330078, 11.264612 ], [ 86.791992, 12.254128 ], [ 86.879883, 14.008696 ], [ 88.505859, 14.859850 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 68.040461 ], [ 21.357422, 67.390599 ], [ 20.742188, 65.892680 ], [ 17.929688, 65.275094 ], [ 15.512695, 66.107170 ], [ 14.809570, 67.356785 ], [ 17.797852, 68.040461 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820aeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 5, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5.2, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 171094, "tippecanoe:count:GDP_MD": 5, "tippecanoe:mean:GDP_MD": 34218.8, "tippecanoe:min:GDP_MD": 10354, "tippecanoe:max:GDP_MD": 63177, "tippecanoe:sum:GDP_YEAR": 10091, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:mean:GDP_YEAR": 2018.2, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:HOMEPART": 5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:LABELRANK": 5, "tippecanoe:mean:LABELRANK": 2.8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 151.860612, "tippecanoe:count:LABEL_X": 5, "tippecanoe:mean:LABEL_X": 30.372122400000003, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:max:LABEL_X": 34.959183, "tippecanoe:sum:LABEL_Y": -0.6041630000000007, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:mean:LABEL_Y": -0.12083260000000014, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:LEVEL": 5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:mean:LONG_LEN": 12.6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 28, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:mean:MAPCOLOR13": 5.6, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR7": 3.8, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 18, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR8": 3.6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 39, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 7.8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 14, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:mean:MIN_LABEL": 2.8, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:mean:NAME_LEN": 8.6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:sum:NE_ID": 5796605647, "tippecanoe:count:NE_ID": 5, "tippecanoe:mean:NE_ID": 1159321129.4, "tippecanoe:min:NE_ID": 1159320513, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:sum:POP_EST": 212754687, "tippecanoe:count:POP_EST": 5, "tippecanoe:mean:POP_EST": 42550937.4, "tippecanoe:min:POP_EST": 11062113, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:sum:POP_RANK": 75, "tippecanoe:count:POP_RANK": 5, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -495, "tippecanoe:count:TINY": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 93699565, "tippecanoe:count:WOE_ID": 5, "tippecanoe:mean:WOE_ID": 18739913, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:sum:WOE_ID_EH": 93699565, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:mean:WOE_ID_EH": 18739913, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 88815, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 88815, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 17.984249, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 17.984249, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_Y": -12.182762, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -12.182762, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:max:LABEL_Y": -12.182762, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159320323, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320323, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:max:NE_ID": 1159320323, "tippecanoe:sum:POP_EST": 31825295, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 31825295, "tippecanoe:min:POP_EST": 31825295, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424745, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424745, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:max:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID_EH": 23424745, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424745, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:max:WOE_ID_EH": 23424745, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.063477, 81.334844 ], [ 107.094727, 79.997168 ], [ 103.754883, 78.331648 ], [ 95.537109, 77.888038 ], [ 88.725586, 78.988187 ], [ 89.560547, 80.739423 ], [ 100.063477, 81.334844 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.417969, 37.649034 ], [ 90.131836, 36.738884 ], [ 89.956055, 35.029996 ], [ 88.110352, 34.270836 ], [ 86.352539, 35.137879 ], [ 86.484375, 36.844461 ], [ 88.417969, 37.649034 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:min:GDP_MD": 418, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:min:POP_EST": 215056, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -192, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -48, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 97.866211, 67.050304 ], [ 96.899414, 65.440002 ], [ 93.120117, 64.979359 ], [ 89.956055, 66.053716 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.209961, 80.816891 ], [ 46.669922, 79.520657 ], [ 43.857422, 78.007325 ], [ 36.430664, 77.683500 ], [ 30.102539, 78.750659 ], [ 30.805664, 80.342262 ], [ 40.209961, 80.816891 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82654ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.010742, 3.951941 ], [ 92.504883, 2.943041 ], [ 92.416992, 1.186439 ], [ 90.834961, 0.439449 ], [ 89.340820, 1.406109 ], [ 89.428711, 3.162456 ], [ 91.010742, 3.951941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82115ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.076172, 67.187000 ], [ 49.746094, 65.820782 ], [ 47.548828, 64.434892 ], [ 43.901367, 64.377941 ], [ 42.099609, 65.694476 ], [ 44.077148, 67.118748 ], [ 48.076172, 67.187000 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.263672, 17.434511 ], [ 91.801758, 16.467695 ], [ 91.669922, 14.689881 ], [ 90.043945, 13.880746 ], [ 88.505859, 14.859850 ], [ 88.593750, 16.594081 ], [ 90.263672, 17.434511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.318359, 58.470721 ], [ 93.823242, 57.397624 ], [ 93.383789, 55.702355 ], [ 90.659180, 55.078367 ], [ 88.198242, 56.121060 ], [ 88.417969, 57.821355 ], [ 91.318359, 58.470721 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 61.185625 ], [ 91.713867, 60.130564 ], [ 91.318359, 58.470721 ], [ 88.417969, 57.821355 ], [ 85.693359, 58.813742 ], [ 85.825195, 60.500525 ], [ 88.945312, 61.185625 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:min:GDP_MD": 907, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 7, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:min:POP_EST": 603253, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.363281, 73.775780 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 86.835938, 70.363091 ], [ 82.441406, 71.286699 ], [ 82.221680, 72.971189 ], [ 87.363281, 73.775780 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 65730, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 21910, "tippecanoe:min:GDP_MD": 3070, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -26.792673999999999, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": -8.930891333333334, "tippecanoe:min:LABEL_X": -11.763677, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_Y": 22.556016, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 7.518672, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:max:LABEL_Y": 8.617449, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 19, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 10.5, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 32, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 3477962773, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320924.3333333, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:sum:POP_EST": 38467133, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 12822377.666666666, "tippecanoe:min:POP_EST": 4937374, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:sum:POP_RANK": 40, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274676, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424892, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:sum:WOE_ID_EH": 70274676, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424892, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 5642, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 5642, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:max:GDP_MD": 5642, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 73.507554, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 73.507554, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:max:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_Y": 4.174441, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 4.174441, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:max:LABEL_Y": 4.174441, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 1159321053, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321053, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:sum:POP_EST": 530953, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 530953, "tippecanoe:min:POP_EST": 530953, "tippecanoe:max:POP_EST": 530953, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424899, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424899, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID_EH": 23424899, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424899, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "826467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.648438, 6.708254 ], [ 91.142578, 5.747174 ], [ 91.010742, 3.951941 ], [ 89.428711, 3.162456 ], [ 87.978516, 4.171115 ], [ 88.066406, 5.922045 ], [ 89.648438, 6.708254 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.103516, 68.496040 ], [ 75.234375, 67.875541 ], [ 75.629883, 66.302205 ], [ 72.290039, 65.366837 ], [ 68.422852, 65.946472 ], [ 67.675781, 67.491751 ], [ 71.103516, 68.496040 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.065430, 37.474858 ], [ 93.735352, 36.527295 ], [ 93.427734, 34.849875 ], [ 91.582031, 34.125448 ], [ 89.956055, 35.029996 ], [ 90.131836, 36.738884 ], [ 92.065430, 37.474858 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.758789, 68.155209 ], [ 137.197266, 67.542167 ], [ 137.812500, 65.784758 ], [ 134.516602, 64.699105 ], [ 130.517578, 65.256706 ], [ 129.375000, 66.947274 ], [ 132.758789, 68.155209 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.813477, 20.097206 ], [ 90.351562, 19.186678 ], [ 90.263672, 17.434511 ], [ 88.593750, 16.594081 ], [ 87.055664, 17.560247 ], [ 87.143555, 19.269665 ], [ 88.813477, 20.097206 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.956055, 35.029996 ], [ 91.582031, 34.125448 ], [ 91.362305, 32.472695 ], [ 89.560547, 31.728167 ], [ 87.978516, 32.583849 ], [ 88.110352, 34.270836 ], [ 89.956055, 35.029996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.956055, 12.082296 ], [ 91.450195, 11.092166 ], [ 91.362305, 9.318990 ], [ 89.736328, 8.494105 ], [ 88.242188, 9.492408 ], [ 88.330078, 11.264612 ], [ 89.956055, 12.082296 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:max:GDP_MD": 268, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:max:POP_EST": 18008, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:max:POP_RANK": 6, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "823cd7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.571289, 22.634293 ], [ 92.153320, 21.739091 ], [ 92.021484, 19.973349 ], [ 90.351562, 19.186678 ], [ 88.813477, 20.097206 ], [ 88.901367, 21.820708 ], [ 90.571289, 22.634293 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.362305, 32.472695 ], [ 92.900391, 31.615966 ], [ 92.768555, 30.031055 ], [ 91.010742, 29.267233 ], [ 89.428711, 30.107118 ], [ 89.560547, 31.728167 ], [ 91.362305, 32.472695 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.636719, 84.245182 ], [ 103.930664, 83.031552 ], [ 100.063477, 81.334844 ], [ 89.560547, 80.739423 ], [ 79.892578, 81.634149 ], [ 78.706055, 83.384872 ], [ 92.636719, 84.245182 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 9, "tippecanoe:sum:ABBREV_LEN": 41, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4.555555555555555, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3072017, "tippecanoe:count:GDP_MD": 9, "tippecanoe:mean:GDP_MD": 341335.22222222227, "tippecanoe:min:GDP_MD": 3154, "tippecanoe:max:GDP_MD": 2003576, "tippecanoe:sum:GDP_YEAR": 18170, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:mean:GDP_YEAR": 2018.888888888889, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:HOMEPART": 9, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 41, "tippecanoe:count:LABELRANK": 9, "tippecanoe:mean:LABELRANK": 4.555555555555555, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 80.51718399999999, "tippecanoe:count:LABEL_X": 9, "tippecanoe:mean:LABEL_X": 8.946353777777777, "tippecanoe:min:LABEL_X": 1.539409, "tippecanoe:max:LABEL_X": 18.06841, "tippecanoe:sum:LABEL_Y": 382.08085600000006, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:mean:LABEL_Y": 42.45342844444445, "tippecanoe:min:LABEL_Y": 27.397406, "tippecanoe:max:LABEL_Y": 49.733732, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:LEVEL": 9, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 32, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:mean:MAPCOLOR8": 3.5555555555555555, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 33, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 77.8, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:mean:MAX_LABEL": 8.644444444444444, "tippecanoe:min:MAX_LABEL": 6.8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 36.7, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:mean:MIN_LABEL": 4.077777777777778, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 84, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:mean:NAME_LEN": 9.333333333333334, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 10433887383, "tippecanoe:count:NE_ID": 9, "tippecanoe:mean:NE_ID": 1159320820.3333333, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:sum:POP_EST": 129744004, "tippecanoe:count:POP_EST": 9, "tippecanoe:mean:POP_EST": 14416000.444444444, "tippecanoe:min:POP_EST": 38019, "tippecanoe:max:POP_EST": 60297396, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_RANK": 9, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -578, "tippecanoe:count:TINY": 9, "tippecanoe:mean:TINY": -64.22222222222223, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 210823727, "tippecanoe:count:WOE_ID": 9, "tippecanoe:mean:WOE_ID": 23424858.555555557, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:max:WOE_ID": 23424967, "tippecanoe:sum:WOE_ID_EH": 210823727, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:mean:WOE_ID_EH": 23424858.555555557, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:max:WOE_ID_EH": 23424967, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "82000ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 83.599031 ], [ 43.330078, 82.396611 ], [ 40.209961, 80.816891 ], [ 30.805664, 80.342262 ], [ 21.928711, 81.248348 ], [ 20.917969, 82.869765 ], [ 33.222656, 83.599031 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.571289, 40.145289 ], [ 92.329102, 39.164141 ], [ 92.065430, 37.474858 ], [ 90.131836, 36.738884 ], [ 88.417969, 37.649034 ], [ 88.593750, 39.368279 ], [ 90.571289, 40.145289 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8201affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.098633, 75.230667 ], [ 49.790039, 73.898111 ], [ 47.636719, 72.501722 ], [ 42.451172, 72.369105 ], [ 38.627930, 73.540855 ], [ 39.990234, 75.016306 ], [ 46.098633, 75.230667 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 3, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "820827fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 67.067433 ], [ 9.580078, 65.874725 ], [ 7.646484, 64.661517 ], [ 4.702148, 64.567319 ], [ 3.383789, 65.730626 ], [ 5.229492, 67.016009 ], [ 8.525391, 67.067433 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.362305, 9.318990 ], [ 92.856445, 8.320212 ], [ 92.768555, 6.533645 ], [ 91.142578, 5.747174 ], [ 89.648438, 6.708254 ], [ 89.736328, 8.494105 ], [ 91.362305, 9.318990 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.592773, 63.391522 ], [ 95.361328, 62.288365 ], [ 94.790039, 60.673179 ], [ 91.713867, 60.130564 ], [ 88.945312, 61.185625 ], [ 89.252930, 62.835089 ], [ 92.592773, 63.391522 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 53.357109 ], [ 92.592773, 52.295042 ], [ 92.241211, 50.569283 ], [ 89.824219, 49.894634 ], [ 87.583008, 50.903033 ], [ 87.758789, 52.643063 ], [ 90.351562, 53.357109 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, 67.339861 ], [ 168.530273, 66.000150 ], [ 166.992188, 64.377941 ], [ 163.037109, 64.014496 ], [ 160.180664, 65.238307 ], [ 161.279297, 66.947274 ], [ 165.761719, 67.339861 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823cf7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.077148, 25.244696 ], [ 90.703125, 24.327077 ], [ 90.571289, 22.634293 ], [ 88.901367, 21.820708 ], [ 87.319336, 22.715390 ], [ 87.407227, 24.407138 ], [ 89.077148, 25.244696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82048ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:min:POP_EST": 433285, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -196, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.766602, 79.560546 ], [ 59.677734, 78.025574 ], [ 55.634766, 76.669656 ], [ 48.559570, 76.679785 ], [ 43.857422, 78.007325 ], [ 46.669922, 79.520657 ], [ 55.766602, 79.560546 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.362305, 45.367584 ], [ 93.251953, 44.308127 ], [ 92.944336, 42.585444 ], [ 90.834961, 41.869561 ], [ 88.945312, 42.875964 ], [ 89.121094, 44.621754 ], [ 91.362305, 45.367584 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 78.007325 ], [ 48.559570, 76.679785 ], [ 46.098633, 75.230667 ], [ 39.990234, 75.016306 ], [ 35.200195, 76.153479 ], [ 36.430664, 77.683500 ], [ 43.857422, 78.007325 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82104ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820b57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 68.768235 ], [ 82.749023, 67.958148 ], [ 82.880859, 66.319861 ], [ 79.321289, 65.549367 ], [ 75.629883, 66.302205 ], [ 75.234375, 67.875541 ], [ 78.750000, 68.768235 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 69.302794 ], [ 38.056641, 68.155209 ], [ 36.386719, 66.705169 ], [ 32.783203, 66.372755 ], [ 30.498047, 67.458082 ], [ 31.816406, 68.926811 ], [ 35.771484, 69.302794 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821067fffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 401083, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 133694.33333333335, "tippecanoe:min:GDP_MD": 66800, "tippecanoe:max:GDP_MD": 226848, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -231.440641, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": -77.14688033333333, "tippecanoe:min:LABEL_X": -80.352106, "tippecanoe:max:LABEL_X": -72.90016, "tippecanoe:sum:LABEL_Y": -5.513775000000001, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -1.8379250000000003, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:max:LABEL_Y": 8.72198, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 5.666666666666667, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 5.666666666666667, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 3477962891, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320963.6666668, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:max:NE_ID": 1159321163, "tippecanoe:sum:POP_EST": 54130554, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 18043518, "tippecanoe:min:POP_EST": 4246439, "tippecanoe:max:POP_EST": 32510453, "tippecanoe:sum:POP_RANK": 41, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 13.666666666666666, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274644, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424881.333333333, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:sum:WOE_ID_EH": 70274644, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424881.333333333, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 68.528235 ], [ 54.843750, 68.447662 ], [ 56.293945, 67.016009 ], [ 53.657227, 65.730626 ], [ 49.746094, 65.820782 ], [ 48.076172, 67.187000 ], [ 50.537109, 68.528235 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 86.660156, 68.688521 ], [ 86.835938, 70.363091 ], [ 91.450195, 71.031249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82002ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.928711, 81.248348 ], [ 30.805664, 80.342262 ], [ 30.102539, 78.750659 ], [ 23.115234, 78.080156 ], [ 15.688477, 78.801980 ], [ 13.886719, 80.349631 ], [ 21.928711, 81.248348 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.669922, 14.689881 ], [ 93.208008, 13.710035 ], [ 93.120117, 11.910354 ], [ 91.450195, 11.092166 ], [ 89.956055, 12.082296 ], [ 90.043945, 13.880746 ], [ 91.669922, 14.689881 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82001ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.942383, 82.506295 ], [ 61.127930, 80.942273 ], [ 55.766602, 79.560546 ], [ 46.669922, 79.520657 ], [ 40.209961, 80.816891 ], [ 43.330078, 82.396611 ], [ 55.942383, 82.506295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8201a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 178612, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 59537.333333333336, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:sum:GDP_YEAR": 6056, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -257.185951, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": -85.72865033333334, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:max:LABEL_X": -77.975855, "tippecanoe:sum:LABEL_Y": 53.518225, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 17.839408333333336, "tippecanoe:min:LABEL_Y": 14.982133, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:sum:LEVEL": 5, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 1.6666666666666668, "tippecanoe:min:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 6.333333333333333, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 17, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 5.666666666666667, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 6.333333333333333, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 3477961773, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320591, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:max:NE_ID": 1159320815, "tippecanoe:sum:POP_EST": 28327862, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 9442620.666666666, "tippecanoe:min:POP_EST": 390353, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -194, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424795.666666669, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:max:WOE_ID": 23424834, "tippecanoe:sum:WOE_ID_EH": 70274387, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424795.666666669, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:max:WOE_ID_EH": 23424834, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820a07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.956055, 66.053716 ], [ 93.120117, 64.979359 ], [ 92.592773, 63.391522 ], [ 89.252930, 62.835089 ], [ 86.132812, 63.801894 ], [ 86.352539, 65.421730 ], [ 89.956055, 66.053716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ce7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.922852, 27.683528 ], [ 92.504883, 26.784847 ], [ 92.373047, 25.125393 ], [ 90.703125, 24.327077 ], [ 89.077148, 25.244696 ], [ 89.208984, 26.863281 ], [ 90.922852, 27.683528 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.498047, 67.458082 ], [ 32.783203, 66.372755 ], [ 31.508789, 64.867608 ], [ 28.300781, 64.453849 ], [ 26.103516, 65.494741 ], [ 27.026367, 66.998844 ], [ 30.498047, 67.458082 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.213867, 72.100944 ], [ 28.432617, 71.244356 ], [ 28.256836, 69.839622 ], [ 24.477539, 69.302794 ], [ 20.610352, 70.050596 ], [ 20.126953, 71.441171 ], [ 24.213867, 72.100944 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, 74.152089 ], [ 33.486328, 73.163173 ], [ 32.827148, 71.718882 ], [ 28.432617, 71.244356 ], [ 24.213867, 72.100944 ], [ 23.994141, 73.540855 ], [ 28.916016, 74.152089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.821289, 76.362262 ], [ 18.061523, 75.769747 ], [ 18.896484, 74.295463 ], [ 14.545898, 73.490977 ], [ 9.184570, 73.995328 ], [ 7.382812, 75.386696 ], [ 11.821289, 76.362262 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 70.050596 ], [ 24.477539, 69.302794 ], [ 24.609375, 67.958148 ], [ 21.357422, 67.390599 ], [ 17.797852, 68.040461 ], [ 17.138672, 69.364831 ], [ 20.610352, 70.050596 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82011ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.200195, 76.153479 ], [ 39.990234, 75.016306 ], [ 38.627930, 73.540855 ], [ 33.486328, 73.163173 ], [ 28.916016, 74.152089 ], [ 29.223633, 75.650431 ], [ 35.200195, 76.153479 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82010ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 76.537296 ], [ 29.223633, 75.650431 ], [ 28.916016, 74.152089 ], [ 23.994141, 73.540855 ], [ 18.896484, 74.295463 ], [ 18.061523, 75.769747 ], [ 23.466797, 76.537296 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82012ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.896484, 74.295463 ], [ 23.994141, 73.540855 ], [ 24.213867, 72.100944 ], [ 20.126953, 71.441171 ], [ 15.556641, 72.087432 ], [ 14.545898, 73.490977 ], [ 18.896484, 74.295463 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.688477, 78.801980 ], [ 23.115234, 78.080156 ], [ 23.466797, 76.537296 ], [ 18.061523, 75.769747 ], [ 11.821289, 76.362262 ], [ 9.887695, 77.832589 ], [ 15.688477, 78.801980 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82095ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 69.930300 ], [ 17.138672, 69.364831 ], [ 17.797852, 68.040461 ], [ 14.809570, 67.356785 ], [ 11.118164, 67.858985 ], [ 10.063477, 69.115611 ], [ 13.051758, 69.930300 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820947fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.338867, 71.705093 ], [ 11.997070, 71.258480 ], [ 13.051758, 69.930300 ], [ 10.063477, 69.115611 ], [ 5.932617, 69.519147 ], [ 4.350586, 70.772443 ], [ 7.338867, 71.705093 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82096ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.184570, 73.995328 ], [ 14.545898, 73.490977 ], [ 15.556641, 72.087432 ], [ 11.997070, 71.258480 ], [ 7.338867, 71.705093 ], [ 5.625000, 73.035419 ], [ 9.184570, 73.995328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82094ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.556641, 72.087432 ], [ 20.126953, 71.441171 ], [ 20.610352, 70.050596 ], [ 17.138672, 69.364831 ], [ 13.051758, 69.930300 ], [ 11.997070, 71.258480 ], [ 15.556641, 72.087432 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820957fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.932617, 69.519147 ], [ 10.063477, 69.115611 ], [ 11.118164, 67.858985 ], [ 8.525391, 67.067433 ], [ 5.229492, 67.016009 ], [ 3.779297, 68.220523 ], [ 5.932617, 69.519147 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.102539, 78.750659 ], [ 36.430664, 77.683500 ], [ 35.200195, 76.153479 ], [ 29.223633, 75.650431 ], [ 23.466797, 76.537296 ], [ 23.115234, 78.080156 ], [ 30.102539, 78.750659 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.827148, 71.718882 ], [ 36.562500, 70.685421 ], [ 35.771484, 69.302794 ], [ 31.816406, 68.926811 ], [ 28.256836, 69.839622 ], [ 28.432617, 71.244356 ], [ 32.827148, 71.718882 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.627930, 73.540855 ], [ 42.451172, 72.369105 ], [ 41.088867, 70.959697 ], [ 36.562500, 70.685421 ], [ 32.827148, 71.718882 ], [ 33.486328, 73.163173 ], [ 38.627930, 73.540855 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82116ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.088867, 70.959697 ], [ 44.252930, 69.778952 ], [ 42.099609, 68.382996 ], [ 38.056641, 68.155209 ], [ 35.771484, 69.302794 ], [ 36.562500, 70.685421 ], [ 41.088867, 70.959697 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 69.839622 ], [ 31.816406, 68.926811 ], [ 30.498047, 67.458082 ], [ 27.026367, 66.998844 ], [ 24.609375, 67.958148 ], [ 24.477539, 69.302794 ], [ 28.256836, 69.839622 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.028320, 83.900390 ], [ 78.706055, 83.384872 ], [ 79.892578, 81.634149 ], [ 71.367188, 80.553733 ], [ 61.127930, 80.942273 ], [ 55.942383, 82.506295 ], [ 64.028320, 83.900390 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, 76.047916 ], [ 76.025391, 75.453071 ], [ 76.904297, 73.763497 ], [ 72.509766, 72.751039 ], [ 67.060547, 73.264704 ], [ 65.126953, 74.867889 ], [ 69.565430, 76.047916 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.060547, 73.264704 ], [ 72.509766, 72.751039 ], [ 73.564453, 71.102543 ], [ 69.960938, 70.080562 ], [ 65.302734, 70.539543 ], [ 63.500977, 72.087432 ], [ 67.060547, 73.264704 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82018ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.559570, 76.679785 ], [ 55.634766, 76.669656 ], [ 58.798828, 75.163300 ], [ 55.590820, 73.849286 ], [ 49.790039, 73.898111 ], [ 46.098633, 75.230667 ], [ 48.559570, 76.679785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.302734, 70.539543 ], [ 69.960938, 70.080562 ], [ 71.103516, 68.496040 ], [ 67.675781, 67.491751 ], [ 63.457031, 67.925140 ], [ 62.358398, 69.395783 ], [ 65.302734, 70.539543 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.650391, 76.413973 ], [ 87.714844, 75.497157 ], [ 87.363281, 73.775780 ], [ 82.221680, 72.971189 ], [ 76.904297, 73.763497 ], [ 76.025391, 75.453071 ], [ 81.650391, 76.413973 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82019ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.798828, 75.163300 ], [ 65.126953, 74.867889 ], [ 67.060547, 73.264704 ], [ 63.500977, 72.087432 ], [ 58.227539, 72.369105 ], [ 55.590820, 73.849286 ], [ 58.798828, 75.163300 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8200a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:max:GDP_MD": 215, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:max:POP_EST": 5997, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 5, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 3, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "820197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 5, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 7.8, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:mean:ADM0_DIF": 0.8, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6622, "tippecanoe:count:GDP_MD": 5, "tippecanoe:mean:GDP_MD": 1324.4, "tippecanoe:min:GDP_MD": 44, "tippecanoe:max:GDP_MD": 3855, "tippecanoe:sum:GDP_YEAR": 10075, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:mean:GDP_YEAR": 2015, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -395, "tippecanoe:count:HOMEPART": 5, "tippecanoe:mean:HOMEPART": -79, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:LABELRANK": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -316.44404499999998, "tippecanoe:count:LABEL_X": 5, "tippecanoe:mean:LABEL_X": -63.28880899999999, "tippecanoe:min:LABEL_X": -64.779172, "tippecanoe:max:LABEL_X": -61.790612, "tippecanoe:sum:LABEL_Y": 88.344033, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:mean:LABEL_Y": 17.6688066, "tippecanoe:min:LABEL_Y": 16.73717, "tippecanoe:max:LABEL_Y": 18.426606, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:LEVEL": 5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 91, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:mean:LONG_LEN": 18.2, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:sum:MAPCOLOR13": 23, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:mean:MAPCOLOR13": 4.6, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR8": 4.8, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 27, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR9": 5.4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.8, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 25, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:mean:NAME_LEN": 13.8, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 18, "tippecanoe:sum:NE_ID": 5796603821, "tippecanoe:count:NE_ID": 5, "tippecanoe:mean:NE_ID": 1159320764.2, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:sum:POP_EST": 276430, "tippecanoe:count:POP_EST": 5, "tippecanoe:mean:POP_EST": 55286, "tippecanoe:min:POP_EST": 4649, "tippecanoe:max:POP_EST": 106631, "tippecanoe:sum:POP_RANK": 35, "tippecanoe:count:POP_RANK": 5, "tippecanoe:mean:POP_RANK": 7, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 20, "tippecanoe:count:TINY": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 149741898, "tippecanoe:count:WOE_ID": 5, "tippecanoe:mean:WOE_ID": 29948379.6, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:sum:WOE_ID_EH": 149741898, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:mean:WOE_ID_EH": 29948379.6, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:scalerank": 5, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 72.369105 ], [ 63.500977, 72.087432 ], [ 65.302734, 70.539543 ], [ 62.358398, 69.395783 ], [ 57.832031, 69.672358 ], [ 55.546875, 71.102543 ], [ 58.227539, 72.369105 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82106ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 7, "tippecanoe:sum:ABBREV_LEN": 35, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 41876, "tippecanoe:count:GDP_MD": 7, "tippecanoe:mean:GDP_MD": 5982.285714285715, "tippecanoe:min:GDP_MD": 582, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:HOMEPART": 7, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 36, "tippecanoe:count:LABELRANK": 7, "tippecanoe:mean:LABELRANK": 5.142857142857143, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -419.001901, "tippecanoe:count:LABEL_X": 7, "tippecanoe:mean:LABEL_X": -59.857414428571427, "tippecanoe:min:LABEL_X": -61.344958, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:sum:LABEL_Y": 75.87001300000002, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:mean:LABEL_Y": 10.838573285714288, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:max:LABEL_Y": 15.458829, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:LEVEL": 7, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 92, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:mean:LONG_LEN": 13.142857142857143, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:mean:MAPCOLOR13": 6.428571428571429, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 22, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR8": 3.142857142857143, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 65.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:mean:MAX_LABEL": 9.357142857142858, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 31, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:mean:MIN_LABEL": 4.428571428571429, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 78, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:mean:NAME_LEN": 11.142857142857143, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:sum:NE_ID": 8115246839, "tippecanoe:count:NE_ID": 7, "tippecanoe:mean:NE_ID": 1159320977, "tippecanoe:min:NE_ID": 1159320449, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:sum:POP_EST": 3411314, "tippecanoe:count:POP_EST": 7, "tippecanoe:mean:POP_EST": 487330.5714285714, "tippecanoe:min:POP_EST": 71808, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:sum:POP_RANK": 70, "tippecanoe:count:POP_RANK": 7, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -284, "tippecanoe:count:TINY": 7, "tippecanoe:mean:TINY": -40.57142857142857, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 163974191, "tippecanoe:count:WOE_ID": 7, "tippecanoe:mean:WOE_ID": 23424884.42857143, "tippecanoe:min:WOE_ID": 23424754, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:sum:WOE_ID_EH": 163974191, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:mean:WOE_ID_EH": 23424884.42857143, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:scalerank": 7, "tippecanoe:mean:scalerank": 2.142857142857143, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.832031, 69.672358 ], [ 62.358398, 69.395783 ], [ 63.457031, 67.925140 ], [ 60.424805, 66.757250 ], [ 56.293945, 67.016009 ], [ 54.843750, 68.447662 ], [ 57.832031, 69.672358 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8201b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 10, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 5.8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 5, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 730711, "tippecanoe:count:GDP_MD": 10, "tippecanoe:mean:GDP_MD": 73071.1, "tippecanoe:min:GDP_MD": 240, "tippecanoe:max:GDP_MD": 482359, "tippecanoe:sum:GDP_YEAR": 20164, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:mean:GDP_YEAR": 2016.4, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -490, "tippecanoe:count:HOMEPART": 10, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 52, "tippecanoe:count:LABELRANK": 10, "tippecanoe:mean:LABELRANK": 5.2, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 10, "tippecanoe:sum:LABEL_X": -725.4550589999999, "tippecanoe:count:LABEL_X": 10, "tippecanoe:mean:LABEL_X": -72.5455059, "tippecanoe:min:LABEL_X": -81.24055, "tippecanoe:max:LABEL_X": -64.599381, "tippecanoe:sum:LABEL_Y": 181.523907, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:mean:LABEL_Y": 18.1523907, "tippecanoe:min:LABEL_Y": 7.182476, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:LEVEL": 10, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 130, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 33, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:mean:MAPCOLOR7": 3.3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:mean:MAPCOLOR8": 3.3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 37, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:mean:MAPCOLOR9": 3.7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 92.5, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 43, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:mean:MIN_LABEL": 4.3, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:mean:MIN_ZOOM": 0.5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 109, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:mean:NAME_LEN": 10.9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 11593208594, "tippecanoe:count:NE_ID": 10, "tippecanoe:mean:NE_ID": 1159320859.4, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:sum:POP_EST": 57315996, "tippecanoe:count:POP_EST": 10, "tippecanoe:mean:POP_EST": 5731599.6, "tippecanoe:min:POP_EST": 6000, "tippecanoe:max:POP_EST": 28515829, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_RANK": 10, "tippecanoe:mean:POP_RANK": 10.6, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 20189, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:mean:POP_YEAR": 2018.9, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -786, "tippecanoe:count:TINY": 10, "tippecanoe:mean:TINY": -78.6, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 187398728, "tippecanoe:count:WOE_ID": 10, "tippecanoe:mean:WOE_ID": 18739872.8, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:sum:WOE_ID_EH": 211948628, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:mean:WOE_ID_EH": 21194862.8, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:scalerank": 10, "tippecanoe:mean:scalerank": 1.6, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:max:POP_EST": 63918, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 4, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "820087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.388672, 78.853070 ], [ 81.210938, 78.143526 ], [ 81.650391, 76.413973 ], [ 76.025391, 75.453071 ], [ 69.565430, 76.047916 ], [ 67.500000, 77.702234 ], [ 73.388672, 78.853070 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 5, "tippecanoe:sum:ABBREV_LEN": 22, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 4.4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 46639, "tippecanoe:count:GDP_MD": 5, "tippecanoe:mean:GDP_MD": 9327.8, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:HOMEPART": 5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:LABELRANK": 5, "tippecanoe:mean:LABELRANK": 4.2, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -64.057735, "tippecanoe:count:LABEL_X": 5, "tippecanoe:mean:LABEL_X": -12.811547, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:max:LABEL_X": -9.740299, "tippecanoe:sum:LABEL_Y": 71.149136, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:mean:LABEL_Y": 14.229827199999999, "tippecanoe:min:LABEL_Y": 10.618516, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:LEVEL": 5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 46, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:mean:LONG_LEN": 9.2, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR8": 4.2, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 44, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 8.8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:mean:MIN_LABEL": 3.7399999999999999, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:mean:NAME_LEN": 8.4, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 5796604709, "tippecanoe:count:NE_ID": 5, "tippecanoe:mean:NE_ID": 1159320941.8, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:max:NE_ID": 1159321243, "tippecanoe:sum:POP_EST": 37861934, "tippecanoe:count:POP_EST": 5, "tippecanoe:mean:POP_EST": 7572386.8, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_RANK": 5, "tippecanoe:mean:POP_RANK": 12.8, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -495, "tippecanoe:count:TINY": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 117124424, "tippecanoe:count:WOE_ID": 5, "tippecanoe:mean:WOE_ID": 23424884.8, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:max:WOE_ID": 23424943, "tippecanoe:sum:WOE_ID_EH": 117124424, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:mean:WOE_ID_EH": 23424884.8, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:max:WOE_ID_EH": 23424943, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.441406, 71.286699 ], [ 86.835938, 70.363091 ], [ 86.660156, 68.688521 ], [ 82.749023, 67.958148 ], [ 78.750000, 68.768235 ], [ 78.222656, 70.407348 ], [ 82.441406, 71.286699 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.904297, 73.763497 ], [ 82.221680, 72.971189 ], [ 82.441406, 71.286699 ], [ 78.222656, 70.407348 ], [ 73.564453, 71.102543 ], [ 72.509766, 72.751039 ], [ 76.904297, 73.763497 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:max:POP_EST": 549935, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "82219ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.984375, 41.343825 ], [ 66.269531, 40.813809 ], [ 66.708984, 39.061849 ], [ 65.039062, 37.892196 ], [ 62.885742, 38.410558 ], [ 62.314453, 40.145289 ], [ 63.984375, 41.343825 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 49.922935 ], [ 45.922852, 49.894634 ], [ 47.021484, 48.341646 ], [ 45.703125, 46.920255 ], [ 43.330078, 46.980252 ], [ 42.143555, 48.458352 ], [ 43.374023, 49.922935 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.208984, 9.492408 ], [ 45.219727, 8.276727 ], [ 44.736328, 6.926427 ], [ 43.198242, 6.751896 ], [ 42.143555, 7.972198 ], [ 42.626953, 9.362353 ], [ 44.208984, 9.492408 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820817fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, 63.956673 ], [ 15.029297, 63.174194 ], [ 14.106445, 61.959616 ], [ 11.074219, 61.543641 ], [ 8.920898, 62.308794 ], [ 9.711914, 63.528971 ], [ 12.832031, 63.956673 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8211a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, 56.752723 ], [ 35.288086, 55.453941 ], [ 34.277344, 53.956086 ], [ 31.816406, 53.722717 ], [ 30.234375, 54.952386 ], [ 31.113281, 56.462490 ], [ 33.706055, 56.752723 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.080078, 41.310824 ], [ 33.354492, 39.842286 ], [ 32.387695, 38.307181 ], [ 30.146484, 38.203655 ], [ 28.828125, 39.639538 ], [ 29.794922, 41.178654 ], [ 32.080078, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 65.892680 ], [ 23.071289, 64.979359 ], [ 22.412109, 63.470145 ], [ 19.731445, 62.915233 ], [ 17.534180, 63.801894 ], [ 17.929688, 65.275094 ], [ 20.742188, 65.892680 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.744141, 55.875311 ], [ 14.633789, 54.901882 ], [ 13.842773, 53.488046 ], [ 11.250000, 53.041213 ], [ 9.360352, 53.981935 ], [ 10.063477, 55.404070 ], [ 12.744141, 55.875311 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.669922, 13.667338 ], [ 47.373047, 12.382928 ], [ 46.538086, 11.005904 ], [ 45.000000, 10.876465 ], [ 44.252930, 12.168226 ], [ 45.087891, 13.581921 ], [ 46.669922, 13.667338 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82089ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 60.973107 ], [ 25.795898, 59.910976 ], [ 25.092773, 58.401712 ], [ 22.148438, 58.217025 ], [ 20.214844, 59.220934 ], [ 21.269531, 60.457218 ], [ 23.818359, 60.973107 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 61.627286 ], [ 48.559570, 60.174306 ], [ 46.757812, 58.745407 ], [ 43.637695, 58.722599 ], [ 42.099609, 60.130564 ], [ 43.769531, 61.585492 ], [ 47.109375, 61.627286 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827af7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 6.926427 ], [ 45.791016, 5.659719 ], [ 45.307617, 4.214943 ], [ 43.725586, 4.039618 ], [ 42.670898, 5.309766 ], [ 43.198242, 6.751896 ], [ 44.736328, 6.926427 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825357fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.571289, 24.926295 ], [ 47.285156, 24.886436 ], [ 48.032227, 23.443089 ], [ 47.109375, 22.024546 ], [ 45.439453, 22.024546 ], [ 44.604492, 23.443089 ], [ 45.571289, 24.926295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 65.494741 ], [ 28.300781, 64.453849 ], [ 27.377930, 62.955223 ], [ 24.521484, 62.471724 ], [ 22.412109, 63.470145 ], [ 23.071289, 64.979359 ], [ 26.103516, 65.494741 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82102ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.548828, 64.434892 ], [ 49.086914, 63.035039 ], [ 47.109375, 61.627286 ], [ 43.769531, 61.585492 ], [ 42.099609, 62.935235 ], [ 43.901367, 64.377941 ], [ 47.548828, 64.434892 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.994141, 46.589069 ], [ 25.532227, 45.305803 ], [ 24.609375, 43.771094 ], [ 22.236328, 43.516689 ], [ 20.698242, 44.809122 ], [ 21.533203, 46.346928 ], [ 23.994141, 46.589069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.340820, 14.902322 ], [ 45.087891, 13.581921 ], [ 44.252930, 12.168226 ], [ 42.670898, 12.039321 ], [ 41.879883, 13.368243 ], [ 42.714844, 14.817371 ], [ 44.340820, 14.902322 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 56.920997 ], [ 22.939453, 55.850650 ], [ 21.928711, 54.495568 ], [ 19.204102, 54.213861 ], [ 17.358398, 55.279115 ], [ 18.281250, 56.632064 ], [ 21.093750, 56.920997 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.928711, 54.495568 ], [ 23.642578, 53.357109 ], [ 22.675781, 51.971346 ], [ 20.039062, 51.699800 ], [ 18.281250, 52.829321 ], [ 19.204102, 54.213861 ], [ 21.928711, 54.495568 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822cb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.022461, 32.361403 ], [ 44.956055, 32.287133 ], [ 45.791016, 30.789037 ], [ 44.824219, 29.343875 ], [ 42.978516, 29.382175 ], [ 42.011719, 30.902225 ], [ 43.022461, 32.361403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82218ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.214844, 44.308127 ], [ 67.587891, 43.739352 ], [ 68.027344, 42.000325 ], [ 66.269531, 40.813809 ], [ 63.984375, 41.343825 ], [ 63.413086, 43.100983 ], [ 65.214844, 44.308127 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8211affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, 58.470721 ], [ 39.243164, 57.136239 ], [ 37.968750, 55.627996 ], [ 35.288086, 55.453941 ], [ 33.706055, 56.752723 ], [ 34.804688, 58.263287 ], [ 37.661133, 58.470721 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ec7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 43.771094 ], [ 26.059570, 42.423457 ], [ 25.180664, 40.847060 ], [ 22.895508, 40.613952 ], [ 21.401367, 41.934977 ], [ 22.236328, 43.516689 ], [ 24.609375, 43.771094 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 58.745407 ], [ 48.076172, 57.255281 ], [ 46.450195, 55.825973 ], [ 43.549805, 55.825973 ], [ 42.143555, 57.255281 ], [ 43.637695, 58.722599 ], [ 46.757812, 58.745407 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822187fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 43.580391 ], [ 63.413086, 43.100983 ], [ 63.984375, 41.343825 ], [ 62.314453, 40.145289 ], [ 60.073242, 40.613952 ], [ 59.370117, 42.293564 ], [ 61.040039, 43.580391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82098ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.920898, 62.308794 ], [ 11.074219, 61.543641 ], [ 10.283203, 60.283408 ], [ 7.426758, 59.756395 ], [ 5.493164, 60.930432 ], [ 6.152344, 62.206512 ], [ 8.920898, 62.308794 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825207fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.516602, 20.550509 ], [ 45.307617, 19.145168 ], [ 44.428711, 17.685895 ], [ 42.758789, 17.644022 ], [ 41.923828, 19.020577 ], [ 42.802734, 20.509355 ], [ 44.516602, 20.550509 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82521ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.428711, 17.685895 ], [ 45.219727, 16.341226 ], [ 44.340820, 14.902322 ], [ 42.714844, 14.817371 ], [ 41.923828, 16.172473 ], [ 42.758789, 17.644022 ], [ 44.428711, 17.685895 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.946289, 42.747012 ], [ 42.143555, 42.617791 ], [ 43.198242, 41.145570 ], [ 42.099609, 39.774769 ], [ 39.990234, 39.842286 ], [ 38.847656, 41.343825 ], [ 39.946289, 42.747012 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820837fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 852, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 852, "tippecanoe:min:GDP_MD": 852, "tippecanoe:max:GDP_MD": 852, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -172.438241, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -172.438241, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:max:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_Y": -13.639139, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -13.639139, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 1159321423, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321423, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:sum:POP_EST": 197097, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 197097, "tippecanoe:min:POP_EST": 197097, "tippecanoe:max:POP_EST": 197097, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424992, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424992, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID_EH": 23424992, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424992, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "8221b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.041016, 42.714732 ], [ 59.370117, 42.293564 ], [ 60.073242, 40.613952 ], [ 58.491211, 39.334297 ], [ 56.293945, 39.740986 ], [ 55.546875, 41.376809 ], [ 57.041016, 42.714732 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820997fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.767578, 58.447733 ], [ 8.789062, 57.633640 ], [ 8.129883, 56.267761 ], [ 5.537109, 55.702355 ], [ 3.647461, 56.872996 ], [ 4.218750, 58.263287 ], [ 6.767578, 58.447733 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.419922, 42.811522 ], [ 36.606445, 41.376809 ], [ 35.595703, 39.909736 ], [ 33.354492, 39.842286 ], [ 32.080078, 41.310824 ], [ 33.090820, 42.779275 ], [ 35.419922, 42.811522 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.420898, 42.811522 ], [ 78.618164, 42.000325 ], [ 78.706055, 40.245992 ], [ 76.772461, 39.232253 ], [ 74.663086, 39.977120 ], [ 74.443359, 41.771312 ], [ 76.420898, 42.811522 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.534180, 63.801894 ], [ 19.731445, 62.915233 ], [ 19.291992, 61.417750 ], [ 16.215820, 61.100789 ], [ 14.106445, 61.959616 ], [ 15.029297, 63.174194 ], [ 17.534180, 63.801894 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.606445, 41.376809 ], [ 38.847656, 41.343825 ], [ 39.990234, 39.842286 ], [ 38.935547, 38.410558 ], [ 36.782227, 38.410558 ], [ 35.595703, 39.909736 ], [ 36.606445, 41.376809 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.791016, 30.789037 ], [ 47.636719, 30.675715 ], [ 48.427734, 29.190533 ], [ 47.460938, 27.800210 ], [ 45.659180, 27.839076 ], [ 44.824219, 29.343875 ], [ 45.791016, 30.789037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.330078, 46.980252 ], [ 45.703125, 46.920255 ], [ 46.757812, 45.367584 ], [ 45.483398, 43.961191 ], [ 43.242188, 44.056012 ], [ 42.143555, 45.552525 ], [ 43.330078, 46.980252 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.766602, 41.574361 ], [ 12.348633, 40.413496 ], [ 11.733398, 38.754083 ], [ 9.580078, 38.238180 ], [ 8.041992, 39.402244 ], [ 8.569336, 41.046217 ], [ 10.766602, 41.574361 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.202148, 42.455888 ], [ 74.443359, 41.771312 ], [ 74.663086, 39.977120 ], [ 72.817383, 38.925229 ], [ 70.664062, 39.605688 ], [ 70.312500, 41.343825 ], [ 72.202148, 42.455888 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.399414, 57.657158 ], [ 31.113281, 56.462490 ], [ 30.234375, 54.952386 ], [ 27.465820, 54.876607 ], [ 25.751953, 56.022948 ], [ 26.850586, 57.302790 ], [ 29.399414, 57.657158 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82522ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 22.024546 ], [ 47.856445, 20.591652 ], [ 46.977539, 19.186678 ], [ 45.307617, 19.145168 ], [ 44.516602, 20.550509 ], [ 45.439453, 22.024546 ], [ 47.109375, 22.024546 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.623047, 43.675818 ], [ 15.249023, 42.488302 ], [ 14.545898, 40.847060 ], [ 12.348633, 40.413496 ], [ 10.766602, 41.574361 ], [ 11.381836, 43.197167 ], [ 13.623047, 43.675818 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.639648, 42.972502 ], [ 82.749023, 42.130821 ], [ 82.749023, 40.346544 ], [ 80.771484, 39.436193 ], [ 78.706055, 40.245992 ], [ 78.618164, 42.000325 ], [ 80.639648, 42.972502 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82088ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "827a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.307617, 4.214943 ], [ 46.362305, 2.986927 ], [ 45.878906, 1.493971 ], [ 44.296875, 1.274309 ], [ 43.198242, 2.547988 ], [ 43.725586, 4.039618 ], [ 45.307617, 4.214943 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 44.056012 ], [ 45.483398, 43.961191 ], [ 46.538086, 42.391009 ], [ 45.351562, 41.013066 ], [ 43.198242, 41.145570 ], [ 42.143555, 42.617791 ], [ 43.242188, 44.056012 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 52.882391 ], [ 46.142578, 52.855864 ], [ 47.329102, 51.316881 ], [ 45.922852, 49.894634 ], [ 43.374023, 49.922935 ], [ 42.143555, 51.399206 ], [ 43.461914, 52.882391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.557617, 58.124320 ], [ 13.535156, 57.231503 ], [ 12.744141, 55.875311 ], [ 10.063477, 55.404070 ], [ 8.129883, 56.267761 ], [ 8.789062, 57.633640 ], [ 11.557617, 58.124320 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825227fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.604492, 23.443089 ], [ 45.439453, 22.024546 ], [ 44.516602, 20.550509 ], [ 42.802734, 20.509355 ], [ 41.967773, 21.943046 ], [ 42.846680, 23.443089 ], [ 44.604492, 23.443089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ceffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.261719, 41.705729 ], [ 55.546875, 41.376809 ], [ 56.293945, 39.740986 ], [ 54.843750, 38.444985 ], [ 52.690430, 38.754083 ], [ 51.855469, 40.380028 ], [ 53.261719, 41.705729 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ecffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.432617, 42.585444 ], [ 29.794922, 41.178654 ], [ 28.828125, 39.639538 ], [ 26.586914, 39.470125 ], [ 25.180664, 40.847060 ], [ 26.059570, 42.423457 ], [ 28.432617, 42.585444 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.814453, 43.004647 ], [ 86.835938, 42.065607 ], [ 86.704102, 40.313043 ], [ 84.682617, 39.470125 ], [ 82.749023, 40.346544 ], [ 82.749023, 42.130821 ], [ 84.814453, 43.004647 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.106445, 61.959616 ], [ 16.215820, 61.100789 ], [ 15.292969, 59.844815 ], [ 12.348633, 59.445075 ], [ 10.283203, 60.283408 ], [ 11.074219, 61.543641 ], [ 14.106445, 61.959616 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825377fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.659180, 27.839076 ], [ 47.460938, 27.800210 ], [ 48.251953, 26.313113 ], [ 47.285156, 24.886436 ], [ 45.571289, 24.926295 ], [ 44.736328, 26.391870 ], [ 45.659180, 27.839076 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.378906, 49.325122 ], [ 24.960938, 48.078079 ], [ 23.994141, 46.589069 ], [ 21.533203, 46.346928 ], [ 19.951172, 47.576526 ], [ 20.830078, 49.066668 ], [ 23.378906, 49.325122 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.450195, 55.825973 ], [ 47.680664, 54.316523 ], [ 46.142578, 52.855864 ], [ 43.461914, 52.882391 ], [ 42.143555, 54.342149 ], [ 43.549805, 55.825973 ], [ 46.450195, 55.825973 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82118ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 57.255281 ], [ 43.549805, 55.825973 ], [ 42.143555, 54.342149 ], [ 39.418945, 54.265224 ], [ 37.968750, 55.627996 ], [ 39.243164, 57.136239 ], [ 42.143555, 57.255281 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.751953, 56.022948 ], [ 27.465820, 54.876607 ], [ 26.367188, 53.540307 ], [ 23.642578, 53.357109 ], [ 21.928711, 54.495568 ], [ 22.939453, 55.850650 ], [ 25.751953, 56.022948 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 38.272689 ], [ 45.175781, 38.134557 ], [ 46.098633, 36.633162 ], [ 45.043945, 35.245619 ], [ 43.066406, 35.317366 ], [ 42.099609, 36.844461 ], [ 43.154297, 38.272689 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.027344, 42.000325 ], [ 70.312500, 41.343825 ], [ 70.664062, 39.605688 ], [ 68.862305, 38.479395 ], [ 66.708984, 39.061849 ], [ 66.269531, 40.813809 ], [ 68.027344, 42.000325 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.198242, 41.145570 ], [ 45.351562, 41.013066 ], [ 46.318359, 39.470125 ], [ 45.175781, 38.134557 ], [ 43.154297, 38.272689 ], [ 42.099609, 39.774769 ], [ 43.198242, 41.145570 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.097656, 43.612217 ], [ 52.382812, 43.357138 ], [ 53.261719, 41.705729 ], [ 51.855469, 40.380028 ], [ 49.658203, 40.647304 ], [ 48.735352, 42.228517 ], [ 50.097656, 43.612217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82520ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.977539, 19.186678 ], [ 47.680664, 17.811456 ], [ 46.801758, 16.383391 ], [ 45.219727, 16.341226 ], [ 44.428711, 17.685895 ], [ 45.307617, 19.145168 ], [ 46.977539, 19.186678 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ed7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.401367, 41.934977 ], [ 22.895508, 40.613952 ], [ 22.060547, 38.993572 ], [ 19.819336, 38.685510 ], [ 18.325195, 39.977120 ], [ 19.072266, 41.607228 ], [ 21.401367, 41.934977 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 57.633640 ], [ 18.281250, 56.632064 ], [ 17.358398, 55.279115 ], [ 14.633789, 54.901882 ], [ 12.744141, 55.875311 ], [ 13.535156, 57.231503 ], [ 16.347656, 57.633640 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820807fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 65.874725 ], [ 12.919922, 65.421730 ], [ 12.832031, 63.956673 ], [ 9.711914, 63.528971 ], [ 7.646484, 64.661517 ], [ 9.580078, 65.874725 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.534180, 42.875964 ], [ 19.072266, 41.607228 ], [ 18.325195, 39.977120 ], [ 16.083984, 39.605688 ], [ 14.545898, 40.847060 ], [ 15.249023, 42.488302 ], [ 17.534180, 42.875964 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ca7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 35.317366 ], [ 45.043945, 35.245619 ], [ 45.966797, 33.724340 ], [ 44.956055, 32.287133 ], [ 43.022461, 32.361403 ], [ 42.055664, 33.870416 ], [ 43.066406, 35.317366 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82394ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.987305, 42.163403 ], [ 8.569336, 41.046217 ], [ 8.041992, 39.402244 ], [ 5.976562, 38.856820 ], [ 4.394531, 39.943436 ], [ 4.877930, 41.574361 ], [ 6.987305, 42.163403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821967fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.647461, 56.872996 ], [ 5.537109, 55.702355 ], [ 4.965820, 54.290882 ], [ 2.592773, 54.007769 ], [ 0.659180, 55.128649 ], [ 1.142578, 56.583692 ], [ 3.647461, 56.872996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 51.971346 ], [ 24.345703, 50.764259 ], [ 23.378906, 49.325122 ], [ 20.830078, 49.066668 ], [ 19.160156, 50.261254 ], [ 20.039062, 51.699800 ], [ 22.675781, 51.971346 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.966797, 33.724340 ], [ 47.856445, 33.578015 ], [ 48.647461, 32.063956 ], [ 47.636719, 30.675715 ], [ 45.791016, 30.789037 ], [ 44.956055, 32.287133 ], [ 45.966797, 33.724340 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.538086, 11.005904 ], [ 47.241211, 9.752370 ], [ 46.757812, 8.450639 ], [ 45.219727, 8.276727 ], [ 44.208984, 9.492408 ], [ 45.000000, 10.876465 ], [ 46.538086, 11.005904 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8209affffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 10, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 10, "tippecanoe:min:GDP_MD": 10, "tippecanoe:max:GDP_MD": 10, "tippecanoe:sum:GDP_YEAR": 2003, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2003, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:max:GDP_YEAR": 2003, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -169.862565, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -169.862565, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_Y": -19.045956, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -19.045956, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:max:LABEL_Y": -19.045956, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 4, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:sum:NE_ID": 1159321133, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321133, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:max:NE_ID": 1159321133, "tippecanoe:sum:POP_EST": 1620, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 1620, "tippecanoe:min:POP_EST": 1620, "tippecanoe:max:POP_EST": 1620, "tippecanoe:sum:POP_RANK": 3, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 3, "tippecanoe:min:POP_RANK": 3, "tippecanoe:max:POP_RANK": 3, "tippecanoe:sum:POP_YEAR": 2018, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2018, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 3, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 23424904, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424904, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:max:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID_EH": 23424904, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424904, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:max:WOE_ID_EH": 23424904, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "823947fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.251953, 42.617791 ], [ 4.877930, 41.574361 ], [ 4.394531, 39.943436 ], [ 2.416992, 39.334297 ], [ 0.834961, 40.346544 ], [ 1.230469, 41.967659 ], [ 3.251953, 42.617791 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82099ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.283203, 60.283408 ], [ 12.348633, 59.445075 ], [ 11.557617, 58.124320 ], [ 8.789062, 57.633640 ], [ 6.767578, 58.447733 ], [ 7.426758, 59.756395 ], [ 10.283203, 60.283408 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.538086, 42.391009 ], [ 48.735352, 42.228517 ], [ 49.658203, 40.647304 ], [ 48.427734, 39.300299 ], [ 46.318359, 39.470125 ], [ 45.351562, 41.013066 ], [ 46.538086, 42.391009 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, 58.401712 ], [ 26.850586, 57.302790 ], [ 25.751953, 56.022948 ], [ 22.939453, 55.850650 ], [ 21.093750, 56.920997 ], [ 22.148438, 58.217025 ], [ 25.092773, 58.401712 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82530ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 26.391870 ], [ 45.571289, 24.926295 ], [ 44.604492, 23.443089 ], [ 42.846680, 23.443089 ], [ 41.967773, 24.926295 ], [ 42.890625, 26.391870 ], [ 44.736328, 26.391870 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.801758, 16.383391 ], [ 47.548828, 15.072124 ], [ 46.669922, 13.667338 ], [ 45.087891, 13.581921 ], [ 44.340820, 14.902322 ], [ 45.219727, 16.341226 ], [ 46.801758, 16.383391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.129883, 56.267761 ], [ 10.063477, 55.404070 ], [ 9.360352, 53.981935 ], [ 6.855469, 53.435719 ], [ 4.965820, 54.290882 ], [ 5.537109, 55.702355 ], [ 8.129883, 56.267761 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82532ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.978516, 29.382175 ], [ 44.824219, 29.343875 ], [ 45.659180, 27.839076 ], [ 44.736328, 26.391870 ], [ 42.890625, 26.391870 ], [ 42.011719, 27.877928 ], [ 42.978516, 29.382175 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 8.450639 ], [ 47.812500, 7.231699 ], [ 47.329102, 5.834616 ], [ 45.791016, 5.659719 ], [ 44.736328, 6.926427 ], [ 45.219727, 8.276727 ], [ 46.757812, 8.450639 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.252930, 12.168226 ], [ 45.000000, 10.876465 ], [ 44.208984, 9.492408 ], [ 42.626953, 9.362353 ], [ 41.879883, 10.617418 ], [ 42.670898, 12.039321 ], [ 44.252930, 12.168226 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820987fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.493164, 60.930432 ], [ 7.426758, 59.756395 ], [ 6.767578, 58.447733 ], [ 4.218750, 58.263287 ], [ 2.197266, 59.377988 ], [ 2.768555, 60.737686 ], [ 5.493164, 60.930432 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82081ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.512695, 66.107170 ], [ 17.929688, 65.275094 ], [ 17.534180, 63.801894 ], [ 15.029297, 63.174194 ], [ 12.832031, 63.956673 ], [ 12.919922, 65.421730 ], [ 15.512695, 66.107170 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820897fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 59.220934 ], [ 22.148438, 58.217025 ], [ 21.093750, 56.920997 ], [ 18.281250, 56.632064 ], [ 16.347656, 57.633640 ], [ 17.270508, 58.927334 ], [ 20.214844, 59.220934 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820887fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 61.417750 ], [ 21.269531, 60.457218 ], [ 20.214844, 59.220934 ], [ 17.270508, 58.927334 ], [ 15.292969, 59.844815 ], [ 16.215820, 61.100789 ], [ 19.291992, 61.417750 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8208b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 59.844815 ], [ 17.270508, 58.927334 ], [ 16.347656, 57.633640 ], [ 13.535156, 57.231503 ], [ 11.557617, 58.124320 ], [ 12.348633, 59.445075 ], [ 15.292969, 59.844815 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 50.986099 ], [ 16.611328, 49.894634 ], [ 15.820312, 48.400032 ], [ 13.359375, 47.960502 ], [ 11.645508, 49.037868 ], [ 12.348633, 50.541363 ], [ 14.853516, 50.986099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821eb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.711914, 44.308127 ], [ 11.381836, 43.197167 ], [ 10.766602, 41.574361 ], [ 8.569336, 41.046217 ], [ 6.987305, 42.163403 ], [ 7.514648, 43.771094 ], [ 9.711914, 44.308127 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821fb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.383789, 49.866317 ], [ 5.141602, 48.951366 ], [ 4.658203, 47.398349 ], [ 2.460938, 46.769968 ], [ 0.747070, 47.901614 ], [ 1.186523, 49.468124 ], [ 3.383789, 49.866317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.360352, 53.981935 ], [ 11.250000, 53.041213 ], [ 10.546875, 51.563412 ], [ 8.085938, 51.041394 ], [ 6.240234, 51.971346 ], [ 6.855469, 53.435719 ], [ 9.360352, 53.981935 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821fa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 51.971346 ], [ 8.085938, 51.041394 ], [ 7.470703, 49.525208 ], [ 5.141602, 48.951366 ], [ 3.383789, 49.866317 ], [ 3.867188, 51.371780 ], [ 6.240234, 51.971346 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ea7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 46.407564 ], [ 14.326172, 45.274886 ], [ 13.623047, 43.675818 ], [ 11.381836, 43.197167 ], [ 9.711914, 44.308127 ], [ 10.327148, 45.920587 ], [ 12.656250, 46.407564 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82196ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 54.290882 ], [ 6.855469, 53.435719 ], [ 6.240234, 51.971346 ], [ 3.867188, 51.371780 ], [ 2.109375, 52.509535 ], [ 2.592773, 54.007769 ], [ 4.965820, 54.290882 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 50.261254 ], [ 20.830078, 49.066668 ], [ 19.951172, 47.576526 ], [ 17.490234, 47.249407 ], [ 15.820312, 48.400032 ], [ 16.611328, 49.894634 ], [ 19.160156, 50.261254 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 53.488046 ], [ 15.644531, 52.456009 ], [ 14.853516, 50.986099 ], [ 12.348633, 50.541363 ], [ 10.546875, 51.563412 ], [ 11.250000, 53.041213 ], [ 13.842773, 53.488046 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.470703, 49.525208 ], [ 9.272461, 48.545705 ], [ 8.657227, 46.980252 ], [ 6.372070, 46.407564 ], [ 4.658203, 47.398349 ], [ 5.141602, 48.951366 ], [ 7.470703, 49.525208 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.645508, 49.037868 ], [ 13.359375, 47.960502 ], [ 12.656250, 46.407564 ], [ 10.327148, 45.920587 ], [ 8.657227, 46.980252 ], [ 9.272461, 48.545705 ], [ 11.645508, 49.037868 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821faffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 51.563412 ], [ 12.348633, 50.541363 ], [ 11.645508, 49.037868 ], [ 9.272461, 48.545705 ], [ 7.470703, 49.525208 ], [ 8.085938, 51.041394 ], [ 10.546875, 51.563412 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82396ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.844727, 44.840291 ], [ 7.514648, 43.771094 ], [ 6.987305, 42.163403 ], [ 4.877930, 41.574361 ], [ 3.251953, 42.617791 ], [ 3.691406, 44.213710 ], [ 5.844727, 44.840291 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.658203, 47.398349 ], [ 6.372070, 46.407564 ], [ 5.844727, 44.840291 ], [ 3.691406, 44.213710 ], [ 2.021484, 45.182037 ], [ 2.460938, 46.769968 ], [ 4.658203, 47.398349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.657227, 46.980252 ], [ 10.327148, 45.920587 ], [ 9.711914, 44.308127 ], [ 7.514648, 43.771094 ], [ 5.844727, 44.840291 ], [ 6.372070, 46.407564 ], [ 8.657227, 46.980252 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.358398, 55.279115 ], [ 19.204102, 54.213861 ], [ 18.281250, 52.829321 ], [ 15.644531, 52.456009 ], [ 13.842773, 53.488046 ], [ 14.633789, 54.901882 ], [ 17.358398, 55.279115 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 52.829321 ], [ 20.039062, 51.699800 ], [ 19.160156, 50.261254 ], [ 16.611328, 49.894634 ], [ 14.853516, 50.986099 ], [ 15.644531, 52.456009 ], [ 18.281250, 52.829321 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 48.400032 ], [ 17.490234, 47.249407 ], [ 16.699219, 45.675482 ], [ 14.326172, 45.274886 ], [ 12.656250, 46.407564 ], [ 13.359375, 47.960502 ], [ 15.820312, 48.400032 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.951172, 47.576526 ], [ 21.533203, 46.346928 ], [ 20.698242, 44.809122 ], [ 18.325195, 44.465151 ], [ 16.699219, 45.675482 ], [ 17.490234, 47.249407 ], [ 19.951172, 47.576526 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821eaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.699219, 45.675482 ], [ 18.325195, 44.465151 ], [ 17.534180, 42.875964 ], [ 15.249023, 42.488302 ], [ 13.623047, 43.675818 ], [ 14.326172, 45.274886 ], [ 16.699219, 45.675482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821ef7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.698242, 44.809122 ], [ 22.236328, 43.516689 ], [ 21.401367, 41.934977 ], [ 19.072266, 41.607228 ], [ 17.534180, 42.875964 ], [ 18.325195, 44.465151 ], [ 20.698242, 44.809122 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.099609, 62.935235 ], [ 43.769531, 61.585492 ], [ 42.099609, 60.130564 ], [ 39.023438, 59.977005 ], [ 37.309570, 61.270233 ], [ 38.759766, 62.774837 ], [ 42.099609, 62.935235 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82111ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.309570, 61.270233 ], [ 39.023438, 59.977005 ], [ 37.661133, 58.470721 ], [ 34.804688, 58.263287 ], [ 33.090820, 59.512029 ], [ 34.233398, 61.015725 ], [ 37.309570, 61.270233 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.377930, 62.955223 ], [ 29.355469, 61.856149 ], [ 28.476562, 60.326948 ], [ 25.795898, 59.910976 ], [ 23.818359, 60.973107 ], [ 24.521484, 62.471724 ], [ 27.377930, 62.955223 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82110ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 64.014496 ], [ 38.759766, 62.774837 ], [ 37.309570, 61.270233 ], [ 34.233398, 61.015725 ], [ 32.343750, 62.226996 ], [ 33.574219, 63.724183 ], [ 36.870117, 64.014496 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82112ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.508789, 64.867608 ], [ 33.574219, 63.724183 ], [ 32.343750, 62.226996 ], [ 29.355469, 61.856149 ], [ 27.377930, 62.955223 ], [ 28.300781, 64.453849 ], [ 31.508789, 64.867608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.090820, 59.512029 ], [ 34.804688, 58.263287 ], [ 33.706055, 56.752723 ], [ 31.113281, 56.462490 ], [ 29.399414, 57.657158 ], [ 30.278320, 59.175928 ], [ 33.090820, 59.512029 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 62.226996 ], [ 34.233398, 61.015725 ], [ 33.090820, 59.512029 ], [ 30.278320, 59.175928 ], [ 28.476562, 60.326948 ], [ 29.355469, 61.856149 ], [ 32.343750, 62.226996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 60.326948 ], [ 30.278320, 59.175928 ], [ 29.399414, 57.657158 ], [ 26.850586, 57.302790 ], [ 25.092773, 58.401712 ], [ 25.795898, 59.910976 ], [ 28.476562, 60.326948 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.099609, 65.694476 ], [ 43.901367, 64.377941 ], [ 42.099609, 62.935235 ], [ 38.759766, 62.774837 ], [ 36.870117, 64.014496 ], [ 38.408203, 65.494741 ], [ 42.099609, 65.694476 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.099609, 60.130564 ], [ 43.637695, 58.722599 ], [ 42.143555, 57.255281 ], [ 39.243164, 57.136239 ], [ 37.661133, 58.470721 ], [ 39.023438, 59.977005 ], [ 42.099609, 60.130564 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 53.540307 ], [ 27.993164, 52.321911 ], [ 26.938477, 50.958427 ], [ 24.345703, 50.764259 ], [ 22.675781, 51.971346 ], [ 23.642578, 53.357109 ], [ 26.367188, 53.540307 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 50.958427 ], [ 28.476562, 49.696062 ], [ 27.465820, 48.253941 ], [ 24.960938, 48.078079 ], [ 23.378906, 49.325122 ], [ 24.345703, 50.764259 ], [ 26.938477, 50.958427 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.980469, 48.458352 ], [ 36.298828, 47.070122 ], [ 35.200195, 45.675482 ], [ 32.783203, 45.644768 ], [ 31.420898, 47.040182 ], [ 32.475586, 48.429201 ], [ 34.980469, 48.458352 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.069336, 49.781264 ], [ 32.475586, 48.429201 ], [ 31.420898, 47.040182 ], [ 28.959961, 46.950262 ], [ 27.465820, 48.253941 ], [ 28.476562, 49.696062 ], [ 31.069336, 49.781264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.673828, 52.402419 ], [ 32.167969, 51.124213 ], [ 31.069336, 49.781264 ], [ 28.476562, 49.696062 ], [ 26.938477, 50.958427 ], [ 27.993164, 52.321911 ], [ 30.673828, 52.402419 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.760742, 51.124213 ], [ 36.123047, 49.781264 ], [ 34.980469, 48.458352 ], [ 32.475586, 48.429201 ], [ 31.069336, 49.781264 ], [ 32.167969, 51.124213 ], [ 34.760742, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.200195, 45.675482 ], [ 36.474609, 44.245199 ], [ 35.419922, 42.811522 ], [ 33.090820, 42.779275 ], [ 31.772461, 44.213710 ], [ 32.783203, 45.644768 ], [ 35.200195, 45.675482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8211b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.277344, 53.956086 ], [ 35.727539, 52.616390 ], [ 34.760742, 51.124213 ], [ 32.167969, 51.124213 ], [ 30.673828, 52.402419 ], [ 31.816406, 53.722717 ], [ 34.277344, 53.956086 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 51.399206 ], [ 43.374023, 49.922935 ], [ 42.143555, 48.458352 ], [ 39.770508, 48.458352 ], [ 38.496094, 49.866317 ], [ 39.594727, 51.371780 ], [ 42.143555, 51.399206 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 49.866317 ], [ 39.770508, 48.458352 ], [ 38.671875, 46.980252 ], [ 36.298828, 47.070122 ], [ 34.980469, 48.458352 ], [ 36.123047, 49.781264 ], [ 38.496094, 49.866317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821f4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 54.952386 ], [ 31.816406, 53.722717 ], [ 30.673828, 52.402419 ], [ 27.993164, 52.321911 ], [ 26.367188, 53.540307 ], [ 27.465820, 54.876607 ], [ 30.234375, 54.952386 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.420898, 47.040182 ], [ 32.783203, 45.644768 ], [ 31.772461, 44.213710 ], [ 29.399414, 44.119142 ], [ 27.949219, 45.460131 ], [ 28.959961, 46.950262 ], [ 31.420898, 47.040182 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.465820, 48.253941 ], [ 28.959961, 46.950262 ], [ 27.949219, 45.460131 ], [ 25.532227, 45.305803 ], [ 23.994141, 46.589069 ], [ 24.960938, 48.078079 ], [ 27.465820, 48.253941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821eeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 45.460131 ], [ 29.399414, 44.119142 ], [ 28.432617, 42.585444 ], [ 26.059570, 42.423457 ], [ 24.609375, 43.771094 ], [ 25.532227, 45.305803 ], [ 27.949219, 45.460131 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.772461, 44.213710 ], [ 33.090820, 42.779275 ], [ 32.080078, 41.310824 ], [ 29.794922, 41.178654 ], [ 28.432617, 42.585444 ], [ 29.399414, 44.119142 ], [ 31.772461, 44.213710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.232422, 52.776186 ], [ 39.594727, 51.371780 ], [ 38.496094, 49.866317 ], [ 36.123047, 49.781264 ], [ 34.760742, 51.124213 ], [ 35.727539, 52.616390 ], [ 38.232422, 52.776186 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821187fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 55.627996 ], [ 39.418945, 54.265224 ], [ 38.232422, 52.776186 ], [ 35.727539, 52.616390 ], [ 34.277344, 53.956086 ], [ 35.288086, 55.453941 ], [ 37.968750, 55.627996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82119ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 54.342149 ], [ 43.461914, 52.882391 ], [ 42.143555, 51.399206 ], [ 39.594727, 51.371780 ], [ 38.232422, 52.776186 ], [ 39.418945, 54.265224 ], [ 42.143555, 54.342149 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 45.552525 ], [ 43.242188, 44.056012 ], [ 42.143555, 42.617791 ], [ 39.946289, 42.747012 ], [ 38.759766, 44.213710 ], [ 39.902344, 45.552525 ], [ 42.143555, 45.552525 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.298828, 47.070122 ], [ 38.671875, 46.980252 ], [ 39.902344, 45.552525 ], [ 38.759766, 44.213710 ], [ 36.474609, 44.245199 ], [ 35.200195, 45.675482 ], [ 36.298828, 47.070122 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.474609, 44.245199 ], [ 38.759766, 44.213710 ], [ 39.946289, 42.747012 ], [ 38.847656, 41.343825 ], [ 36.606445, 41.376809 ], [ 35.419922, 42.811522 ], [ 36.474609, 44.245199 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 48.458352 ], [ 43.330078, 46.980252 ], [ 42.143555, 45.552525 ], [ 39.902344, 45.552525 ], [ 38.671875, 46.980252 ], [ 39.770508, 48.458352 ], [ 42.143555, 48.458352 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823877fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.493164, 37.160317 ], [ 7.031250, 36.031332 ], [ 6.547852, 34.343436 ], [ 4.614258, 33.797409 ], [ 3.120117, 34.921971 ], [ 3.559570, 36.597889 ], [ 5.493164, 37.160317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.642578, 12.811801 ], [ 24.741211, 11.523088 ], [ 24.082031, 10.012130 ], [ 22.368164, 9.752370 ], [ 21.225586, 11.005904 ], [ 21.840820, 12.554564 ], [ 23.642578, 12.811801 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 22.796439 ], [ 20.258789, 21.453069 ], [ 19.599609, 19.808054 ], [ 17.753906, 19.476950 ], [ 16.479492, 20.797201 ], [ 17.094727, 22.471955 ], [ 18.984375, 22.796439 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823fa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.491211, 32.879587 ], [ 14.897461, 31.578535 ], [ 14.282227, 29.878755 ], [ 12.304688, 29.458731 ], [ 10.898438, 30.713504 ], [ 11.469727, 32.435613 ], [ 13.491211, 32.879587 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825977fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.119141, 23.483401 ], [ 8.437500, 22.228090 ], [ 7.998047, 20.550509 ], [ 6.284180, 20.138470 ], [ 4.965820, 21.371244 ], [ 5.361328, 22.998852 ], [ 7.119141, 23.483401 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823eaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.577148, 24.806681 ], [ 22.851562, 23.402765 ], [ 22.148438, 21.739091 ], [ 20.258789, 21.453069 ], [ 18.984375, 22.796439 ], [ 19.643555, 24.487149 ], [ 21.577148, 24.806681 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823867fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.041992, 39.402244 ], [ 9.580078, 38.238180 ], [ 9.052734, 36.562600 ], [ 7.031250, 36.031332 ], [ 5.493164, 37.160317 ], [ 5.976562, 38.856820 ], [ 8.041992, 39.402244 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8253b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.618164, 23.039298 ], [ 34.672852, 21.575719 ], [ 33.837891, 20.014645 ], [ 31.992188, 19.849394 ], [ 30.893555, 21.248422 ], [ 31.728516, 22.877440 ], [ 33.618164, 23.039298 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82380ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.120117, 34.921971 ], [ 4.614258, 33.797409 ], [ 4.218750, 32.101190 ], [ 2.373047, 31.541090 ], [ 0.922852, 32.657876 ], [ 1.274414, 34.307144 ], [ 3.120117, 34.921971 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.774414, 29.840644 ], [ 25.048828, 28.420391 ], [ 24.301758, 26.745610 ], [ 22.280273, 26.470573 ], [ 21.005859, 27.877928 ], [ 21.752930, 29.573457 ], [ 23.774414, 29.840644 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 35.995785 ], [ 24.038086, 34.597042 ], [ 23.247070, 32.916485 ], [ 21.137695, 32.657876 ], [ 19.731445, 34.016242 ], [ 20.478516, 35.675147 ], [ 22.675781, 35.995785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 34.016242 ], [ 21.137695, 32.657876 ], [ 20.390625, 30.977609 ], [ 18.325195, 30.637912 ], [ 16.962891, 31.952162 ], [ 17.622070, 33.651208 ], [ 19.731445, 34.016242 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823eeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.629883, 24.327077 ], [ 31.728516, 22.877440 ], [ 30.893555, 21.248422 ], [ 29.003906, 21.084500 ], [ 27.905273, 22.471955 ], [ 28.696289, 24.126702 ], [ 30.629883, 24.327077 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823eb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.805450 ], [ 17.094727, 22.471955 ], [ 16.479492, 20.797201 ], [ 14.633789, 20.468189 ], [ 13.359375, 21.779905 ], [ 13.930664, 23.443089 ], [ 15.820312, 23.805450 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826aa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.148438, 5.528511 ], [ 23.159180, 4.258768 ], [ 22.456055, 2.723583 ], [ 20.786133, 2.504085 ], [ 19.775391, 3.776559 ], [ 20.478516, 5.266008 ], [ 22.148438, 5.528511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826aaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 4.477856 ], [ 25.883789, 3.206333 ], [ 25.224609, 1.669686 ], [ 23.510742, 1.406109 ], [ 22.456055, 2.723583 ], [ 23.159180, 4.258768 ], [ 24.829102, 4.477856 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 32.101190 ], [ 5.668945, 30.939924 ], [ 5.229492, 29.267233 ], [ 3.427734, 28.729130 ], [ 2.021484, 29.878755 ], [ 2.373047, 31.541090 ], [ 4.218750, 32.101190 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8253a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 24.726875 ], [ 37.397461, 23.241346 ], [ 36.518555, 21.698265 ], [ 34.672852, 21.575719 ], [ 33.618164, 23.039298 ], [ 34.497070, 24.607069 ], [ 36.386719, 24.726875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ec7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.905273, 22.471955 ], [ 29.003906, 21.084500 ], [ 28.256836, 19.435514 ], [ 26.411133, 19.228177 ], [ 25.224609, 20.632784 ], [ 25.971680, 22.268764 ], [ 27.905273, 22.471955 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82592ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.042969, 24.206890 ], [ 5.361328, 22.998852 ], [ 4.965820, 21.371244 ], [ 3.295898, 20.920397 ], [ 1.977539, 22.065278 ], [ 2.329102, 23.725012 ], [ 4.042969, 24.206890 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 38.993572 ], [ 23.466797, 37.614231 ], [ 22.675781, 35.995785 ], [ 20.478516, 35.675147 ], [ 19.072266, 37.020098 ], [ 19.819336, 38.685510 ], [ 22.060547, 38.993572 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.477539, 7.231699 ], [ 25.532227, 6.009459 ], [ 24.829102, 4.477856 ], [ 23.159180, 4.258768 ], [ 22.148438, 5.528511 ], [ 22.807617, 7.013668 ], [ 24.477539, 7.231699 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823857fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.547852, 34.343436 ], [ 8.041992, 33.174342 ], [ 7.558594, 31.466154 ], [ 5.668945, 30.939924 ], [ 4.218750, 32.101190 ], [ 4.614258, 33.797409 ], [ 6.547852, 34.343436 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 18.729502 ], [ 23.818359, 17.350638 ], [ 23.159180, 15.749963 ], [ 21.357422, 15.453680 ], [ 20.170898, 16.804541 ], [ 20.830078, 18.437925 ], [ 22.675781, 18.729502 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8253affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.243164, 23.362429 ], [ 40.166016, 21.902278 ], [ 39.287109, 20.344627 ], [ 37.485352, 20.262197 ], [ 36.518555, 21.698265 ], [ 37.397461, 23.241346 ], [ 39.243164, 23.362429 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82385ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.019531, 33.687782 ], [ 11.469727, 32.435613 ], [ 10.898438, 30.713504 ], [ 8.964844, 30.259067 ], [ 7.558594, 31.466154 ], [ 8.041992, 33.174342 ], [ 10.019531, 33.687782 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823fb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.898438, 30.713504 ], [ 12.304688, 29.458731 ], [ 11.777344, 27.761330 ], [ 9.887695, 27.293689 ], [ 8.481445, 28.536275 ], [ 8.964844, 30.259067 ], [ 10.898438, 30.713504 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.301758, 26.745610 ], [ 25.532227, 25.324167 ], [ 24.785156, 23.684774 ], [ 22.851562, 23.402765 ], [ 21.577148, 24.806681 ], [ 22.280273, 26.470573 ], [ 24.301758, 26.745610 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82384ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.612305, 35.853440 ], [ 14.106445, 34.560859 ], [ 13.491211, 32.879587 ], [ 11.469727, 32.435613 ], [ 10.019531, 33.687782 ], [ 10.546875, 35.353216 ], [ 12.612305, 35.853440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.082031, 10.012130 ], [ 25.136719, 8.711359 ], [ 24.477539, 7.231699 ], [ 22.807617, 7.013668 ], [ 21.752930, 8.233237 ], [ 22.368164, 9.752370 ], [ 24.082031, 10.012130 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825947fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.239258, 22.634293 ], [ 11.557617, 21.371244 ], [ 11.030273, 19.725342 ], [ 9.272461, 19.311143 ], [ 7.998047, 20.550509 ], [ 8.437500, 22.228090 ], [ 10.239258, 22.634293 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.247070, 32.916485 ], [ 24.565430, 31.541090 ], [ 23.774414, 29.840644 ], [ 21.752930, 29.573457 ], [ 20.390625, 30.977609 ], [ 21.137695, 32.657876 ], [ 23.247070, 32.916485 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82386ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.733398, 38.754083 ], [ 13.227539, 37.509726 ], [ 12.612305, 35.853440 ], [ 10.546875, 35.353216 ], [ 9.052734, 36.562600 ], [ 9.580078, 38.238180 ], [ 11.733398, 38.754083 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.752930, 8.233237 ], [ 22.807617, 7.013668 ], [ 22.148438, 5.528511 ], [ 20.478516, 5.266008 ], [ 19.467773, 6.533645 ], [ 20.039062, 7.972198 ], [ 21.752930, 8.233237 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.215820, 34.994004 ], [ 17.622070, 33.651208 ], [ 16.962891, 31.952162 ], [ 14.897461, 31.578535 ], [ 13.491211, 32.879587 ], [ 14.106445, 34.560859 ], [ 16.215820, 34.994004 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.148438, 21.739091 ], [ 23.334961, 20.344627 ], [ 22.675781, 18.729502 ], [ 20.830078, 18.437925 ], [ 19.599609, 19.808054 ], [ 20.258789, 21.453069 ], [ 22.148438, 21.739091 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825907fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.977539, 22.065278 ], [ 3.295898, 20.920397 ], [ 2.944336, 19.269665 ], [ 1.362305, 18.812718 ], [ 0.087891, 19.973349 ], [ 0.395508, 21.575719 ], [ 1.977539, 22.065278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82596ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.612305, 24.766785 ], [ 13.930664, 23.443089 ], [ 13.359375, 21.779905 ], [ 11.557617, 21.371244 ], [ 10.239258, 22.634293 ], [ 10.722656, 24.327077 ], [ 12.612305, 24.766785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.159180, 15.749963 ], [ 24.301758, 14.392118 ], [ 23.642578, 12.811801 ], [ 21.840820, 12.554564 ], [ 20.742188, 13.880746 ], [ 21.357422, 15.453680 ], [ 23.159180, 15.749963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82531ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.967773, 24.926295 ], [ 42.846680, 23.443089 ], [ 41.967773, 21.943046 ], [ 40.166016, 21.902278 ], [ 39.243164, 23.362429 ], [ 40.122070, 24.886436 ], [ 41.967773, 24.926295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ef7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 23.684774 ], [ 25.971680, 22.268764 ], [ 25.224609, 20.632784 ], [ 23.334961, 20.344627 ], [ 22.148438, 21.739091 ], [ 22.851562, 23.402765 ], [ 24.785156, 23.684774 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.777344, 27.761330 ], [ 13.139648, 26.470573 ], [ 12.612305, 24.766785 ], [ 10.722656, 24.327077 ], [ 9.360352, 25.601902 ], [ 9.887695, 27.293689 ], [ 11.777344, 27.761330 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82395ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.394531, 39.943436 ], [ 5.976562, 38.856820 ], [ 5.493164, 37.160317 ], [ 3.559570, 36.597889 ], [ 2.021484, 37.649034 ], [ 2.416992, 39.334297 ], [ 4.394531, 39.943436 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821edffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.180664, 40.847060 ], [ 26.586914, 39.470125 ], [ 25.708008, 37.857507 ], [ 23.466797, 37.614231 ], [ 22.060547, 38.993572 ], [ 22.895508, 40.613952 ], [ 25.180664, 40.847060 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823847fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.052734, 36.562600 ], [ 10.546875, 35.353216 ], [ 10.019531, 33.687782 ], [ 8.041992, 33.174342 ], [ 6.547852, 34.343436 ], [ 7.031250, 36.031332 ], [ 9.052734, 36.562600 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 28.536275 ], [ 9.887695, 27.293689 ], [ 9.360352, 25.601902 ], [ 7.558594, 25.165173 ], [ 6.196289, 26.352498 ], [ 6.635742, 28.071980 ], [ 8.481445, 28.536275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.196289, 26.352498 ], [ 7.558594, 25.165173 ], [ 7.119141, 23.483401 ], [ 5.361328, 22.998852 ], [ 4.042969, 24.206890 ], [ 4.394531, 25.878994 ], [ 6.196289, 26.352498 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.229492, 29.267233 ], [ 6.635742, 28.071980 ], [ 6.196289, 26.352498 ], [ 4.394531, 25.878994 ], [ 3.032227, 27.059126 ], [ 3.427734, 28.729130 ], [ 5.229492, 29.267233 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.558594, 31.466154 ], [ 8.964844, 30.259067 ], [ 8.481445, 28.536275 ], [ 6.635742, 28.071980 ], [ 5.229492, 29.267233 ], [ 5.668945, 30.939924 ], [ 7.558594, 31.466154 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8238d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.032227, 27.059126 ], [ 4.394531, 25.878994 ], [ 4.042969, 24.206890 ], [ 2.329102, 23.725012 ], [ 1.010742, 24.846565 ], [ 1.318359, 26.509905 ], [ 3.032227, 27.059126 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825967fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.360352, 25.601902 ], [ 10.722656, 24.327077 ], [ 10.239258, 22.634293 ], [ 8.437500, 22.228090 ], [ 7.119141, 23.483401 ], [ 7.558594, 25.165173 ], [ 9.360352, 25.601902 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821e9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.545898, 40.847060 ], [ 16.083984, 39.605688 ], [ 15.380859, 37.961523 ], [ 13.227539, 37.509726 ], [ 11.733398, 38.754083 ], [ 12.348633, 40.413496 ], [ 14.545898, 40.847060 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 37.961523 ], [ 16.875000, 36.668419 ], [ 16.215820, 34.994004 ], [ 14.106445, 34.560859 ], [ 12.612305, 35.853440 ], [ 13.227539, 37.509726 ], [ 15.380859, 37.961523 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.072266, 37.020098 ], [ 20.478516, 35.675147 ], [ 19.731445, 34.016242 ], [ 17.622070, 33.651208 ], [ 16.215820, 34.994004 ], [ 16.875000, 36.668419 ], [ 19.072266, 37.020098 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.325195, 39.977120 ], [ 19.819336, 38.685510 ], [ 19.072266, 37.020098 ], [ 16.875000, 36.668419 ], [ 15.380859, 37.961523 ], [ 16.083984, 39.605688 ], [ 18.325195, 39.977120 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.005859, 27.877928 ], [ 22.280273, 26.470573 ], [ 21.577148, 24.806681 ], [ 19.643555, 24.487149 ], [ 18.369141, 25.878994 ], [ 19.028320, 27.566721 ], [ 21.005859, 27.877928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.666016, 28.921631 ], [ 19.028320, 27.566721 ], [ 18.369141, 25.878994 ], [ 16.391602, 25.522615 ], [ 15.073242, 26.863281 ], [ 15.688477, 28.574874 ], [ 17.666016, 28.921631 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.282227, 29.878755 ], [ 15.688477, 28.574874 ], [ 15.073242, 26.863281 ], [ 13.139648, 26.470573 ], [ 11.777344, 27.761330 ], [ 12.304688, 29.458731 ], [ 14.282227, 29.878755 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ea7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 25.878994 ], [ 19.643555, 24.487149 ], [ 18.984375, 22.796439 ], [ 17.094727, 22.471955 ], [ 15.820312, 23.805450 ], [ 16.391602, 25.522615 ], [ 18.369141, 25.878994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823faffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 31.952162 ], [ 18.325195, 30.637912 ], [ 17.666016, 28.921631 ], [ 15.688477, 28.574874 ], [ 14.282227, 29.878755 ], [ 14.897461, 31.578535 ], [ 16.962891, 31.952162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.073242, 26.863281 ], [ 16.391602, 25.522615 ], [ 15.820312, 23.805450 ], [ 13.930664, 23.443089 ], [ 12.612305, 24.766785 ], [ 13.139648, 26.470573 ], [ 15.073242, 26.863281 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 30.977609 ], [ 21.752930, 29.573457 ], [ 21.005859, 27.877928 ], [ 19.028320, 27.566721 ], [ 17.666016, 28.921631 ], [ 18.325195, 30.637912 ], [ 20.390625, 30.977609 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82828ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 4.039618 ], [ 13.183594, 2.811371 ], [ 12.480469, 1.318243 ], [ 10.898438, 1.054628 ], [ 10.019531, 2.328460 ], [ 10.722656, 3.776559 ], [ 12.304688, 4.039618 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825827fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.888672, 18.521283 ], [ 7.163086, 17.308688 ], [ 6.767578, 15.707663 ], [ 5.141602, 15.326572 ], [ 3.867188, 16.509833 ], [ 4.218750, 18.104087 ], [ 5.888672, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.162109, 9.318990 ], [ 12.304688, 8.146243 ], [ 11.865234, 6.664608 ], [ 10.283203, 6.402648 ], [ 9.140625, 7.580328 ], [ 9.536133, 9.015302 ], [ 11.162109, 9.318990 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825807fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.767578, 15.707663 ], [ 7.998047, 14.477234 ], [ 7.558594, 12.940322 ], [ 5.976562, 12.597455 ], [ 4.746094, 13.752725 ], [ 5.141602, 15.326572 ], [ 6.767578, 15.707663 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82581ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.558594, 12.940322 ], [ 8.789062, 11.738302 ], [ 8.393555, 10.228437 ], [ 6.811523, 9.882275 ], [ 5.625000, 11.049038 ], [ 5.976562, 12.597455 ], [ 7.558594, 12.940322 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82591ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.944336, 19.269665 ], [ 4.218750, 18.104087 ], [ 3.867188, 16.509833 ], [ 2.285156, 16.088042 ], [ 1.054688, 17.266728 ], [ 1.362305, 18.812718 ], [ 2.944336, 19.269665 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 11.135287 ], [ 14.414062, 9.925566 ], [ 13.930664, 8.407168 ], [ 12.304688, 8.146243 ], [ 11.162109, 9.318990 ], [ 11.601562, 10.833306 ], [ 13.271484, 11.135287 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82582ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.833008, 17.685895 ], [ 10.107422, 16.467695 ], [ 9.667969, 14.859850 ], [ 7.998047, 14.477234 ], [ 6.767578, 15.707663 ], [ 7.163086, 17.308688 ], [ 8.833008, 17.685895 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82594ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 21.779905 ], [ 14.633789, 20.468189 ], [ 14.106445, 18.812718 ], [ 12.304688, 18.437925 ], [ 11.030273, 19.725342 ], [ 11.557617, 21.371244 ], [ 13.359375, 21.779905 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825877fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.821289, 16.804541 ], [ 13.051758, 15.538376 ], [ 12.568359, 13.966054 ], [ 10.854492, 13.624633 ], [ 9.667969, 14.859850 ], [ 10.107422, 16.467695 ], [ 11.821289, 16.804541 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82590ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 21.371244 ], [ 6.284180, 20.138470 ], [ 5.888672, 18.521283 ], [ 4.218750, 18.104087 ], [ 2.944336, 19.269665 ], [ 3.295898, 20.920397 ], [ 4.965820, 21.371244 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82585ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 12.983148 ], [ 16.655273, 11.738302 ], [ 16.127930, 10.185187 ], [ 14.414062, 9.925566 ], [ 13.271484, 11.135287 ], [ 13.754883, 12.683215 ], [ 15.468750, 12.983148 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82595ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 19.725342 ], [ 12.304688, 18.437925 ], [ 11.821289, 16.804541 ], [ 10.107422, 16.467695 ], [ 8.833008, 17.685895 ], [ 9.272461, 19.311143 ], [ 11.030273, 19.725342 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825857fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.568359, 13.966054 ], [ 13.754883, 12.683215 ], [ 13.271484, 11.135287 ], [ 11.601562, 10.833306 ], [ 10.415039, 12.039321 ], [ 10.854492, 13.624633 ], [ 12.568359, 13.966054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826ba7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 12.039321 ], [ 19.511719, 10.746969 ], [ 18.940430, 9.232249 ], [ 17.270508, 8.971897 ], [ 16.127930, 10.185187 ], [ 16.655273, 11.738302 ], [ 18.369141, 12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.415039, 12.039321 ], [ 11.601562, 10.833306 ], [ 11.162109, 9.318990 ], [ 9.536133, 9.015302 ], [ 8.393555, 10.228437 ], [ 8.789062, 11.738302 ], [ 10.415039, 12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825817fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.746094, 13.752725 ], [ 5.976562, 12.597455 ], [ 5.625000, 11.049038 ], [ 4.086914, 10.746969 ], [ 2.900391, 11.867351 ], [ 3.208008, 13.410994 ], [ 4.746094, 13.752725 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.865234, 6.664608 ], [ 13.007812, 5.484768 ], [ 12.304688, 4.039618 ], [ 10.722656, 3.776559 ], [ 9.887695, 5.003394 ], [ 10.283203, 6.402648 ], [ 11.865234, 6.664608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 13.880746 ], [ 21.840820, 12.554564 ], [ 21.225586, 11.005904 ], [ 19.511719, 10.746969 ], [ 18.369141, 12.039321 ], [ 18.940430, 13.581921 ], [ 20.742188, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.900391, 11.867351 ], [ 4.086914, 10.746969 ], [ 3.735352, 9.275622 ], [ 2.285156, 8.928487 ], [ 1.098633, 10.055403 ], [ 1.406250, 11.523088 ], [ 2.900391, 11.867351 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825837fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.867188, 16.509833 ], [ 5.141602, 15.326572 ], [ 4.746094, 13.752725 ], [ 3.208008, 13.410994 ], [ 1.977539, 14.562318 ], [ 2.285156, 16.088042 ], [ 3.867188, 16.509833 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82598ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.977539, 14.562318 ], [ 3.208008, 13.410994 ], [ 2.900391, 11.867351 ], [ 1.406250, 11.523088 ], [ 0.219727, 12.640338 ], [ 0.483398, 14.136576 ], [ 1.977539, 14.562318 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825957fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.998047, 20.550509 ], [ 9.272461, 19.311143 ], [ 8.833008, 17.685895 ], [ 7.163086, 17.308688 ], [ 5.888672, 18.521283 ], [ 6.284180, 20.138470 ], [ 7.998047, 20.550509 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82580ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 14.859850 ], [ 10.854492, 13.624633 ], [ 10.415039, 12.039321 ], [ 8.789062, 11.738302 ], [ 7.558594, 12.940322 ], [ 7.998047, 14.477234 ], [ 9.667969, 14.859850 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82589ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.570312, 6.708254 ], [ 5.712891, 5.572250 ], [ 5.361328, 4.214943 ], [ 3.955078, 3.951941 ], [ 2.812500, 5.047171 ], [ 3.120117, 6.446318 ], [ 4.570312, 6.708254 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.207031, 5.878332 ], [ 8.349609, 4.740675 ], [ 7.646484, 3.294082 ], [ 6.152344, 3.030812 ], [ 5.361328, 4.214943 ], [ 5.712891, 5.572250 ], [ 7.207031, 5.878332 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825897fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.977539, 7.536764 ], [ 3.120117, 6.446318 ], [ 2.812500, 5.047171 ], [ 1.406250, 4.784469 ], [ 0.307617, 5.878332 ], [ 0.571289, 7.231699 ], [ 1.977539, 7.536764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 4.214943 ], [ 6.152344, 3.030812 ], [ 5.493164, 1.625758 ], [ 4.042969, 1.362176 ], [ 3.251953, 2.547988 ], [ 3.955078, 3.951941 ], [ 5.361328, 4.214943 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.646484, 3.294082 ], [ 8.481445, 2.064982 ], [ 7.778320, 0.615223 ], [ 6.284180, 0.395505 ], [ 5.493164, 1.625758 ], [ 6.152344, 3.030812 ], [ 7.646484, 3.294082 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 11.049038 ], [ 6.811523, 9.882275 ], [ 6.416016, 8.450639 ], [ 4.921875, 8.146243 ], [ 3.735352, 9.275622 ], [ 4.086914, 10.746969 ], [ 5.625000, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825887fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.735352, 9.275622 ], [ 4.921875, 8.146243 ], [ 4.570312, 6.708254 ], [ 3.120117, 6.446318 ], [ 1.977539, 7.536764 ], [ 2.285156, 8.928487 ], [ 3.735352, 9.275622 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.140625, 7.580328 ], [ 10.283203, 6.402648 ], [ 9.887695, 5.003394 ], [ 8.349609, 4.740675 ], [ 7.207031, 5.878332 ], [ 7.602539, 7.275292 ], [ 9.140625, 7.580328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82588ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 8.450639 ], [ 7.602539, 7.275292 ], [ 7.207031, 5.878332 ], [ 5.712891, 5.572250 ], [ 4.570312, 6.708254 ], [ 4.921875, 8.146243 ], [ 6.416016, 8.450639 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 5.047171 ], [ 3.955078, 3.951941 ], [ 3.251953, 2.547988 ], [ 1.889648, 2.328460 ], [ 1.142578, 3.469557 ], [ 1.406250, 4.784469 ], [ 2.812500, 5.047171 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.393555, 10.228437 ], [ 9.536133, 9.015302 ], [ 9.140625, 7.580328 ], [ 7.602539, 7.275292 ], [ 6.416016, 8.450639 ], [ 6.811523, 9.882275 ], [ 8.393555, 10.228437 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8282d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 5.003394 ], [ 10.722656, 3.776559 ], [ 10.019531, 2.328460 ], [ 8.481445, 2.064982 ], [ 7.646484, 3.294082 ], [ 8.349609, 4.740675 ], [ 9.887695, 5.003394 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825867fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.106445, 18.812718 ], [ 15.336914, 17.518344 ], [ 14.809570, 15.876809 ], [ 13.051758, 15.538376 ], [ 11.821289, 16.804541 ], [ 12.304688, 18.437925 ], [ 14.106445, 18.812718 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.170898, 16.804541 ], [ 21.357422, 15.453680 ], [ 20.742188, 13.880746 ], [ 18.940430, 13.581921 ], [ 17.797852, 14.902322 ], [ 18.369141, 16.509833 ], [ 20.170898, 16.804541 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.479492, 20.797201 ], [ 17.753906, 19.476950 ], [ 17.138672, 17.811456 ], [ 15.336914, 17.518344 ], [ 14.106445, 18.812718 ], [ 14.633789, 20.468189 ], [ 16.479492, 20.797201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82586ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 17.811456 ], [ 18.369141, 16.509833 ], [ 17.797852, 14.902322 ], [ 15.996094, 14.604847 ], [ 14.809570, 15.876809 ], [ 15.336914, 17.518344 ], [ 17.138672, 17.811456 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 19.808054 ], [ 20.830078, 18.437925 ], [ 20.170898, 16.804541 ], [ 18.369141, 16.509833 ], [ 17.138672, 17.811456 ], [ 17.753906, 19.476950 ], [ 19.599609, 19.808054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82584ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 14.902322 ], [ 18.940430, 13.581921 ], [ 18.369141, 12.039321 ], [ 16.655273, 11.738302 ], [ 15.468750, 12.983148 ], [ 15.996094, 14.604847 ], [ 17.797852, 14.902322 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825847fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.809570, 15.876809 ], [ 15.996094, 14.604847 ], [ 15.468750, 12.983148 ], [ 13.754883, 12.683215 ], [ 12.568359, 13.966054 ], [ 13.051758, 15.538376 ], [ 14.809570, 15.876809 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82829ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.747174 ], [ 15.512695, 4.521666 ], [ 14.809570, 3.030812 ], [ 13.183594, 2.811371 ], [ 12.304688, 4.039618 ], [ 13.007812, 5.484768 ], [ 14.589844, 5.747174 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 6.533645 ], [ 20.478516, 5.266008 ], [ 19.775391, 3.776559 ], [ 18.105469, 3.513421 ], [ 17.138672, 4.784469 ], [ 17.841797, 6.271618 ], [ 19.467773, 6.533645 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828297fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 4.784469 ], [ 18.105469, 3.513421 ], [ 17.402344, 2.021065 ], [ 15.732422, 1.757537 ], [ 14.809570, 3.030812 ], [ 15.512695, 4.521666 ], [ 17.138672, 4.784469 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8258cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.930664, 8.407168 ], [ 15.073242, 7.231699 ], [ 14.589844, 5.747174 ], [ 13.007812, 5.484768 ], [ 11.865234, 6.664608 ], [ 12.304688, 8.146243 ], [ 13.930664, 8.407168 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826bb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.127930, 10.185187 ], [ 17.270508, 8.971897 ], [ 16.699219, 7.493196 ], [ 15.073242, 7.231699 ], [ 13.930664, 8.407168 ], [ 14.414062, 9.925566 ], [ 16.127930, 10.185187 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.940430, 9.232249 ], [ 20.039062, 7.972198 ], [ 19.467773, 6.533645 ], [ 17.841797, 6.271618 ], [ 16.699219, 7.493196 ], [ 17.270508, 8.971897 ], [ 18.940430, 9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.699219, 7.493196 ], [ 17.841797, 6.271618 ], [ 17.138672, 4.784469 ], [ 15.512695, 4.521666 ], [ 14.589844, 5.747174 ], [ 15.073242, 7.231699 ], [ 16.699219, 7.493196 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826baffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.225586, 11.005904 ], [ 22.368164, 9.752370 ], [ 21.752930, 8.233237 ], [ 20.039062, 7.972198 ], [ 18.940430, 9.232249 ], [ 19.511719, 10.746969 ], [ 21.225586, 11.005904 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826ab7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 3.776559 ], [ 20.786133, 2.504085 ], [ 20.083008, 0.922812 ], [ 18.369141, 0.703107 ], [ 17.402344, 2.021065 ], [ 18.105469, 3.513421 ], [ 19.775391, 3.776559 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 26.076521 ], [ 34.497070, 24.607069 ], [ 33.618164, 23.039298 ], [ 31.728516, 22.877440 ], [ 30.629883, 24.327077 ], [ 31.464844, 25.958045 ], [ 33.398438, 26.076521 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822da7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 36.914764 ], [ 36.914062, 35.424868 ], [ 35.947266, 33.870416 ], [ 33.837891, 33.833920 ], [ 32.651367, 35.317366 ], [ 33.618164, 36.844461 ], [ 35.771484, 36.914764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.387695, 38.307181 ], [ 33.618164, 36.844461 ], [ 32.651367, 35.317366 ], [ 30.498047, 35.173808 ], [ 29.267578, 36.633162 ], [ 30.146484, 38.203655 ], [ 32.387695, 38.307181 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.595703, 39.909736 ], [ 36.782227, 38.410558 ], [ 35.771484, 36.914764 ], [ 33.618164, 36.844461 ], [ 32.387695, 38.307181 ], [ 33.354492, 39.842286 ], [ 35.595703, 39.909736 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.651367, 35.317366 ], [ 33.837891, 33.833920 ], [ 32.915039, 32.249974 ], [ 30.849609, 32.101190 ], [ 29.619141, 33.578015 ], [ 30.498047, 35.173808 ], [ 32.651367, 35.317366 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 29.152161 ], [ 34.277344, 27.683528 ], [ 33.398438, 26.076521 ], [ 31.464844, 25.958045 ], [ 30.322266, 27.410786 ], [ 31.157227, 29.036961 ], [ 33.178711, 29.152161 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.079102, 30.826781 ], [ 37.177734, 29.343875 ], [ 36.254883, 27.761330 ], [ 34.277344, 27.683528 ], [ 33.178711, 29.152161 ], [ 34.057617, 30.751278 ], [ 36.079102, 30.826781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.619141, 33.578015 ], [ 30.849609, 32.101190 ], [ 29.970703, 30.486551 ], [ 27.905273, 30.297018 ], [ 26.674805, 31.765537 ], [ 27.509766, 33.394759 ], [ 29.619141, 33.578015 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 33.906896 ], [ 42.055664, 33.870416 ], [ 43.022461, 32.361403 ], [ 42.011719, 30.902225 ], [ 40.078125, 30.902225 ], [ 39.067383, 32.398516 ], [ 40.034180, 33.906896 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.708008, 37.857507 ], [ 27.070312, 36.456636 ], [ 26.191406, 34.813803 ], [ 24.038086, 34.597042 ], [ 22.675781, 35.995785 ], [ 23.466797, 37.614231 ], [ 25.708008, 37.857507 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.067383, 32.398516 ], [ 40.078125, 30.902225 ], [ 39.111328, 29.382175 ], [ 37.177734, 29.343875 ], [ 36.079102, 30.826781 ], [ 37.045898, 32.398516 ], [ 39.067383, 32.398516 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.915039, 32.249974 ], [ 34.057617, 30.751278 ], [ 33.178711, 29.152161 ], [ 31.157227, 29.036961 ], [ 29.970703, 30.486551 ], [ 30.849609, 32.101190 ], [ 32.915039, 32.249974 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822db7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 33.870416 ], [ 37.045898, 32.398516 ], [ 36.079102, 30.826781 ], [ 34.057617, 30.751278 ], [ 32.915039, 32.249974 ], [ 33.837891, 33.833920 ], [ 35.947266, 33.870416 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 34.813803 ], [ 27.509766, 33.394759 ], [ 26.674805, 31.765537 ], [ 24.565430, 31.541090 ], [ 23.247070, 32.916485 ], [ 24.038086, 34.597042 ], [ 26.191406, 34.813803 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.254883, 27.761330 ], [ 37.265625, 26.273714 ], [ 36.386719, 24.726875 ], [ 34.497070, 24.607069 ], [ 33.398438, 26.076521 ], [ 34.277344, 27.683528 ], [ 36.254883, 27.761330 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.267578, 36.633162 ], [ 30.498047, 35.173808 ], [ 29.619141, 33.578015 ], [ 27.509766, 33.394759 ], [ 26.191406, 34.813803 ], [ 27.070312, 36.456636 ], [ 29.267578, 36.633162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823f67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 30.146484, 38.203655 ], [ 29.267578, 36.633162 ], [ 27.070312, 36.456636 ], [ 25.708008, 37.857507 ], [ 26.586914, 39.470125 ], [ 28.828125, 39.639538 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.674805, 31.765537 ], [ 27.905273, 30.297018 ], [ 27.114258, 28.652031 ], [ 25.048828, 28.420391 ], [ 23.774414, 29.840644 ], [ 24.565430, 31.541090 ], [ 26.674805, 31.765537 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.114258, 28.652031 ], [ 28.300781, 27.215556 ], [ 27.509766, 25.562265 ], [ 25.532227, 25.324167 ], [ 24.301758, 26.745610 ], [ 25.048828, 28.420391 ], [ 27.114258, 28.652031 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 25.562265 ], [ 28.696289, 24.126702 ], [ 27.905273, 22.471955 ], [ 25.971680, 22.268764 ], [ 24.785156, 23.684774 ], [ 25.532227, 25.324167 ], [ 27.509766, 25.562265 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.970703, 30.486551 ], [ 31.157227, 29.036961 ], [ 30.322266, 27.410786 ], [ 28.300781, 27.215556 ], [ 27.114258, 28.652031 ], [ 27.905273, 30.297018 ], [ 29.970703, 30.486551 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823e57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, 27.410786 ], [ 31.464844, 25.958045 ], [ 30.629883, 24.327077 ], [ 28.696289, 24.126702 ], [ 27.509766, 25.562265 ], [ 28.300781, 27.215556 ], [ 30.322266, 27.410786 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 35.424868 ], [ 40.034180, 33.906896 ], [ 39.067383, 32.398516 ], [ 37.045898, 32.398516 ], [ 35.947266, 33.870416 ], [ 36.914062, 35.424868 ], [ 38.979492, 35.424868 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822d8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 36.914764 ], [ 42.099609, 36.844461 ], [ 43.066406, 35.317366 ], [ 42.055664, 33.870416 ], [ 40.034180, 33.906896 ], [ 38.979492, 35.424868 ], [ 40.034180, 36.914764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822daffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.935547, 38.410558 ], [ 40.034180, 36.914764 ], [ 38.979492, 35.424868 ], [ 36.914062, 35.424868 ], [ 35.771484, 36.914764 ], [ 36.782227, 38.410558 ], [ 38.935547, 38.410558 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 39.842286 ], [ 42.099609, 39.774769 ], [ 43.154297, 38.272689 ], [ 42.099609, 36.844461 ], [ 40.034180, 36.914764 ], [ 38.935547, 38.410558 ], [ 39.990234, 39.842286 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825327fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.011719, 30.902225 ], [ 42.978516, 29.382175 ], [ 42.011719, 27.877928 ], [ 40.122070, 27.877928 ], [ 39.111328, 29.382175 ], [ 40.078125, 30.902225 ], [ 42.011719, 30.902225 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825307fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.011719, 27.877928 ], [ 42.890625, 26.391870 ], [ 41.967773, 24.926295 ], [ 40.122070, 24.886436 ], [ 39.199219, 26.352498 ], [ 40.122070, 27.877928 ], [ 42.011719, 27.877928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825317fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 26.352498 ], [ 40.122070, 24.886436 ], [ 39.243164, 23.362429 ], [ 37.397461, 23.241346 ], [ 36.386719, 24.726875 ], [ 37.265625, 26.273714 ], [ 39.199219, 26.352498 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825337fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 29.382175 ], [ 40.122070, 27.877928 ], [ 39.199219, 26.352498 ], [ 37.265625, 26.273714 ], [ 36.254883, 27.761330 ], [ 37.177734, 29.343875 ], [ 39.111328, 29.382175 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 8.537565 ], [ 35.639648, 7.275292 ], [ 35.024414, 5.834616 ], [ 33.354492, 5.615986 ], [ 32.299805, 6.882800 ], [ 32.915039, 8.320212 ], [ 34.541016, 8.537565 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.409180, 11.264612 ], [ 35.332031, 9.968851 ], [ 34.541016, 8.537565 ], [ 32.915039, 8.320212 ], [ 31.948242, 9.622414 ], [ 32.695312, 11.092166 ], [ 34.409180, 11.264612 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 17.602139 ], [ 26.806641, 16.214675 ], [ 26.059570, 14.647368 ], [ 24.301758, 14.392118 ], [ 23.159180, 15.749963 ], [ 23.818359, 17.350638 ], [ 25.664062, 17.602139 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.024414, 5.834616 ], [ 36.123047, 4.521666 ], [ 35.507812, 3.030812 ], [ 33.793945, 2.811371 ], [ 32.739258, 4.127285 ], [ 33.354492, 5.615986 ], [ 35.024414, 5.834616 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, 13.539201 ], [ 29.970703, 12.211180 ], [ 29.267578, 10.660608 ], [ 27.509766, 10.444598 ], [ 26.455078, 11.738302 ], [ 27.158203, 13.325485 ], [ 28.916016, 13.539201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ed7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, 20.632784 ], [ 26.411133, 19.228177 ], [ 25.664062, 17.602139 ], [ 23.818359, 17.350638 ], [ 22.675781, 18.729502 ], [ 23.334961, 20.344627 ], [ 25.224609, 20.632784 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 32.211914, 16.846605 ], [ 31.464844, 15.284185 ], [ 29.663086, 15.072124 ], [ 28.608398, 16.467695 ], [ 29.355469, 18.062312 ], [ 31.201172, 18.229351 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82528ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.879883, 13.368243 ], [ 42.670898, 12.039321 ], [ 41.879883, 10.617418 ], [ 40.253906, 10.487812 ], [ 39.418945, 11.781325 ], [ 40.253906, 13.239945 ], [ 41.879883, 13.368243 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.728516, 12.382928 ], [ 32.695312, 11.092166 ], [ 31.948242, 9.622414 ], [ 30.234375, 9.405710 ], [ 29.267578, 10.660608 ], [ 29.970703, 12.211180 ], [ 31.728516, 12.382928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825397fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, 20.014645 ], [ 34.848633, 18.562947 ], [ 34.013672, 17.014768 ], [ 32.211914, 16.846605 ], [ 31.201172, 18.229351 ], [ 31.992188, 19.849394 ], [ 33.837891, 20.014645 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.233398, 14.093957 ], [ 35.156250, 12.768946 ], [ 34.409180, 11.264612 ], [ 32.695312, 11.092166 ], [ 31.728516, 12.382928 ], [ 32.475586, 13.923404 ], [ 34.233398, 14.093957 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 17.014768 ], [ 35.024414, 15.623037 ], [ 34.233398, 14.093957 ], [ 32.475586, 13.923404 ], [ 31.464844, 15.284185 ], [ 32.211914, 16.846605 ], [ 34.013672, 17.014768 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825297fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 12.940322 ], [ 37.749023, 11.609193 ], [ 37.001953, 10.141932 ], [ 35.332031, 9.968851 ], [ 34.409180, 11.264612 ], [ 35.156250, 12.768946 ], [ 36.870117, 12.940322 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 11.738302 ], [ 27.509766, 10.444598 ], [ 26.850586, 8.971897 ], [ 25.136719, 8.711359 ], [ 24.082031, 10.012130 ], [ 24.741211, 11.523088 ], [ 26.455078, 11.738302 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82529ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.418945, 11.781325 ], [ 40.253906, 10.487812 ], [ 39.462891, 9.058702 ], [ 37.836914, 8.885072 ], [ 37.001953, 10.141932 ], [ 37.749023, 11.609193 ], [ 39.418945, 11.781325 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823edffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 19.435514 ], [ 29.355469, 18.062312 ], [ 28.608398, 16.467695 ], [ 26.806641, 16.214675 ], [ 25.664062, 17.602139 ], [ 26.411133, 19.228177 ], [ 28.256836, 19.435514 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.608398, 16.467695 ], [ 29.663086, 15.072124 ], [ 28.916016, 13.539201 ], [ 27.158203, 13.325485 ], [ 26.059570, 14.647368 ], [ 26.806641, 16.214675 ], [ 28.608398, 16.467695 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826aeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 4.127285 ], [ 33.793945, 2.811371 ], [ 33.178711, 1.274309 ], [ 31.464844, 1.010690 ], [ 30.366211, 2.372369 ], [ 31.025391, 3.908099 ], [ 32.739258, 4.127285 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.059570, 14.647368 ], [ 27.158203, 13.325485 ], [ 26.455078, 11.738302 ], [ 24.741211, 11.523088 ], [ 23.642578, 12.811801 ], [ 24.301758, 14.392118 ], [ 26.059570, 14.647368 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ecffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.893555, 21.248422 ], [ 31.992188, 19.849394 ], [ 31.201172, 18.229351 ], [ 29.355469, 18.062312 ], [ 28.256836, 19.435514 ], [ 29.003906, 21.084500 ], [ 30.893555, 21.248422 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826b47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, 15.284185 ], [ 32.475586, 13.923404 ], [ 31.728516, 12.382928 ], [ 29.970703, 12.211180 ], [ 28.916016, 13.539201 ], [ 29.663086, 15.072124 ], [ 31.464844, 15.284185 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826af7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.597656, 3.425692 ], [ 28.652344, 2.108899 ], [ 27.993164, 0.571280 ], [ 26.279297, 0.307616 ], [ 25.224609, 1.669686 ], [ 25.883789, 3.206333 ], [ 27.597656, 3.425692 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 7.928675 ], [ 30.585938, 6.664608 ], [ 29.970703, 5.178482 ], [ 28.256836, 4.959615 ], [ 27.202148, 6.227934 ], [ 27.861328, 7.710992 ], [ 29.531250, 7.928675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.299805, 6.882800 ], [ 33.354492, 5.615986 ], [ 32.739258, 4.127285 ], [ 31.025391, 3.908099 ], [ 29.970703, 5.178482 ], [ 30.585938, 6.664608 ], [ 32.299805, 6.882800 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.850586, 8.971897 ], [ 27.861328, 7.710992 ], [ 27.202148, 6.227934 ], [ 25.532227, 6.009459 ], [ 24.477539, 7.231699 ], [ 25.136719, 8.711359 ], [ 26.850586, 8.971897 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.267578, 10.660608 ], [ 30.234375, 9.405710 ], [ 29.531250, 7.928675 ], [ 27.861328, 7.710992 ], [ 26.850586, 8.971897 ], [ 27.509766, 10.444598 ], [ 29.267578, 10.660608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.970703, 5.178482 ], [ 31.025391, 3.908099 ], [ 30.366211, 2.372369 ], [ 28.652344, 2.108899 ], [ 27.597656, 3.425692 ], [ 28.256836, 4.959615 ], [ 29.970703, 5.178482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.202148, 6.227934 ], [ 28.256836, 4.959615 ], [ 27.597656, 3.425692 ], [ 25.883789, 3.206333 ], [ 24.829102, 4.477856 ], [ 25.532227, 6.009459 ], [ 27.202148, 6.227934 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.948242, 9.622414 ], [ 32.915039, 8.320212 ], [ 32.299805, 6.882800 ], [ 30.585938, 6.664608 ], [ 29.531250, 7.928675 ], [ 30.234375, 9.405710 ], [ 31.948242, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825237fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.967773, 21.943046 ], [ 42.802734, 20.509355 ], [ 41.923828, 19.020577 ], [ 40.209961, 18.937464 ], [ 39.287109, 20.344627 ], [ 40.166016, 21.902278 ], [ 41.967773, 21.943046 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82538ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.287109, 20.344627 ], [ 40.209961, 18.937464 ], [ 39.331055, 17.434511 ], [ 37.573242, 17.308688 ], [ 36.650391, 18.729502 ], [ 37.485352, 20.262197 ], [ 39.287109, 20.344627 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825287fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 14.562318 ], [ 40.253906, 13.239945 ], [ 39.418945, 11.781325 ], [ 37.749023, 11.609193 ], [ 36.870117, 12.940322 ], [ 37.661133, 14.434680 ], [ 39.375000, 14.562318 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82539ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.650391, 18.729502 ], [ 37.573242, 17.308688 ], [ 36.782227, 15.792254 ], [ 35.024414, 15.623037 ], [ 34.013672, 17.014768 ], [ 34.848633, 18.562947 ], [ 36.650391, 18.729502 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.331055, 17.434511 ], [ 40.209961, 16.045813 ], [ 39.375000, 14.562318 ], [ 37.661133, 14.434680 ], [ 36.782227, 15.792254 ], [ 37.573242, 17.308688 ], [ 39.331055, 17.434511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825387fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.518555, 21.698265 ], [ 37.485352, 20.262197 ], [ 36.650391, 18.729502 ], [ 34.848633, 18.562947 ], [ 33.837891, 20.014645 ], [ 34.672852, 21.575719 ], [ 36.518555, 21.698265 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825217fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.923828, 19.020577 ], [ 42.758789, 17.644022 ], [ 41.923828, 16.172473 ], [ 40.209961, 16.045813 ], [ 39.331055, 17.434511 ], [ 40.209961, 18.937464 ], [ 41.923828, 19.020577 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.782227, 15.792254 ], [ 37.661133, 14.434680 ], [ 36.870117, 12.940322 ], [ 35.156250, 12.768946 ], [ 34.233398, 14.093957 ], [ 35.024414, 15.623037 ], [ 36.782227, 15.792254 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.923828, 16.172473 ], [ 42.714844, 14.817371 ], [ 41.879883, 13.368243 ], [ 40.253906, 13.239945 ], [ 39.375000, 14.562318 ], [ 40.209961, 16.045813 ], [ 41.923828, 16.172473 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.143555, 7.972198 ], [ 43.198242, 6.751896 ], [ 42.670898, 5.309766 ], [ 41.044922, 5.134715 ], [ 39.990234, 6.402648 ], [ 40.517578, 7.841615 ], [ 42.143555, 7.972198 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827acffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.462891, 9.058702 ], [ 40.517578, 7.841615 ], [ 39.990234, 6.402648 ], [ 38.364258, 6.227934 ], [ 37.265625, 7.493196 ], [ 37.836914, 8.885072 ], [ 39.462891, 9.058702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827aeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 6.402648 ], [ 41.044922, 5.134715 ], [ 40.517578, 3.645000 ], [ 38.847656, 3.469557 ], [ 37.792969, 4.740675 ], [ 38.364258, 6.227934 ], [ 39.990234, 6.402648 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.517578, 3.645000 ], [ 41.572266, 2.372369 ], [ 41.044922, 0.834931 ], [ 39.375000, 0.615223 ], [ 38.276367, 1.933227 ], [ 38.847656, 3.469557 ], [ 40.517578, 3.645000 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.001953, 10.141932 ], [ 37.836914, 8.885072 ], [ 37.265625, 7.493196 ], [ 35.639648, 7.275292 ], [ 34.541016, 8.537565 ], [ 35.332031, 9.968851 ], [ 37.001953, 10.141932 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, 7.493196 ], [ 38.364258, 6.227934 ], [ 37.792969, 4.740675 ], [ 36.123047, 4.521666 ], [ 35.024414, 5.834616 ], [ 35.639648, 7.275292 ], [ 37.265625, 7.493196 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.792969, 4.740675 ], [ 38.847656, 3.469557 ], [ 38.276367, 1.933227 ], [ 36.606445, 1.713612 ], [ 35.507812, 3.030812 ], [ 36.123047, 4.521666 ], [ 37.792969, 4.740675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827adffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.879883, 10.617418 ], [ 42.626953, 9.362353 ], [ 42.143555, 7.972198 ], [ 40.517578, 7.841615 ], [ 39.462891, 9.058702 ], [ 40.253906, 10.487812 ], [ 41.879883, 10.617418 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.670898, 5.309766 ], [ 43.725586, 4.039618 ], [ 43.198242, 2.547988 ], [ 41.572266, 2.372369 ], [ 40.517578, 3.645000 ], [ 41.044922, 5.134715 ], [ 42.670898, 5.309766 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82210ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.819336, 52.536273 ], [ 67.587891, 51.998410 ], [ 68.115234, 50.233152 ], [ 66.049805, 49.037868 ], [ 63.413086, 49.582226 ], [ 62.753906, 51.289406 ], [ 64.819336, 52.536273 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.422852, 65.946472 ], [ 72.290039, 65.366837 ], [ 72.773438, 63.763065 ], [ 69.785156, 62.734601 ], [ 66.181641, 63.273182 ], [ 65.390625, 64.848937 ], [ 68.422852, 65.946472 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.247070, 58.309489 ], [ 71.367188, 57.704147 ], [ 71.806641, 55.998381 ], [ 69.389648, 54.876607 ], [ 66.445312, 55.453941 ], [ 65.786133, 57.160078 ], [ 68.247070, 58.309489 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 58.539595 ], [ 56.293945, 58.332567 ], [ 57.304688, 56.704506 ], [ 55.283203, 55.379110 ], [ 52.338867, 55.603178 ], [ 51.152344, 57.160078 ], [ 53.085938, 58.539595 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821057fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.019531, 64.263684 ], [ 58.798828, 64.033744 ], [ 59.897461, 62.492028 ], [ 57.436523, 61.206798 ], [ 53.964844, 61.438767 ], [ 52.690430, 62.935235 ], [ 55.019531, 64.263684 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82100ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.086914, 63.035039 ], [ 52.690430, 62.935235 ], [ 53.964844, 61.438767 ], [ 51.855469, 60.086763 ], [ 48.559570, 60.174306 ], [ 47.109375, 61.627286 ], [ 49.086914, 63.035039 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.577148, 47.279229 ], [ 69.082031, 46.679594 ], [ 69.521484, 44.902578 ], [ 67.587891, 43.739352 ], [ 65.214844, 44.308127 ], [ 64.643555, 46.073231 ], [ 66.577148, 47.279229 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820ba7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.892578, 58.927334 ], [ 82.792969, 58.054632 ], [ 82.792969, 56.316537 ], [ 80.112305, 55.453941 ], [ 77.299805, 56.267761 ], [ 77.080078, 58.008098 ], [ 79.892578, 58.927334 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210effffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "821077fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.746094, 65.820782 ], [ 53.657227, 65.730626 ], [ 55.019531, 64.263684 ], [ 52.690430, 62.935235 ], [ 49.086914, 63.035039 ], [ 47.548828, 64.434892 ], [ 49.746094, 65.820782 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.181641, 63.273182 ], [ 69.785156, 62.734601 ], [ 70.356445, 61.100789 ], [ 67.631836, 59.998986 ], [ 64.291992, 60.500525 ], [ 63.457031, 62.124436 ], [ 66.181641, 63.273182 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.666016, 57.633640 ], [ 65.786133, 57.160078 ], [ 66.445312, 55.453941 ], [ 64.160156, 54.265224 ], [ 61.215820, 54.699234 ], [ 60.380859, 56.365250 ], [ 62.666016, 57.633640 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82214ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.299805, 56.267761 ], [ 80.112305, 55.453941 ], [ 80.200195, 53.696706 ], [ 77.695312, 52.749594 ], [ 75.014648, 53.540307 ], [ 74.707031, 55.279115 ], [ 77.299805, 56.267761 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.445312, 55.453941 ], [ 69.389648, 54.876607 ], [ 69.873047, 53.146770 ], [ 67.587891, 51.998410 ], [ 64.819336, 52.536273 ], [ 64.160156, 54.265224 ], [ 66.445312, 55.453941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82216ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.047852, 58.745407 ], [ 77.080078, 58.008098 ], [ 77.299805, 56.267761 ], [ 74.707031, 55.279115 ], [ 71.806641, 55.998381 ], [ 71.367188, 57.704147 ], [ 74.047852, 58.745407 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.304688, 56.704506 ], [ 60.380859, 56.365250 ], [ 61.215820, 54.699234 ], [ 59.150391, 53.409532 ], [ 56.293945, 53.748711 ], [ 55.283203, 55.379110 ], [ 57.304688, 56.704506 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820bb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.792969, 56.316537 ], [ 85.473633, 55.379110 ], [ 85.341797, 53.644638 ], [ 82.792969, 52.802761 ], [ 80.200195, 53.696706 ], [ 80.112305, 55.453941 ], [ 82.792969, 56.316537 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.806641, 55.998381 ], [ 74.707031, 55.279115 ], [ 75.014648, 53.540307 ], [ 72.597656, 52.482780 ], [ 69.873047, 53.146770 ], [ 69.389648, 54.876607 ], [ 71.806641, 55.998381 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.693359, 58.813742 ], [ 88.417969, 57.821355 ], [ 88.198242, 56.121060 ], [ 85.473633, 55.379110 ], [ 82.792969, 56.316537 ], [ 82.792969, 58.054632 ], [ 85.693359, 58.813742 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.964844, 61.438767 ], [ 57.436523, 61.206798 ], [ 58.491211, 59.645540 ], [ 56.293945, 58.332567 ], [ 53.085938, 58.539595 ], [ 51.855469, 60.086763 ], [ 53.964844, 61.438767 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.076172, 57.255281 ], [ 51.152344, 57.160078 ], [ 52.338867, 55.603178 ], [ 50.537109, 54.188155 ], [ 47.680664, 54.316523 ], [ 46.450195, 55.825973 ], [ 48.076172, 57.255281 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.115234, 50.233152 ], [ 70.751953, 49.610710 ], [ 71.147461, 47.842658 ], [ 69.082031, 46.679594 ], [ 66.577148, 47.279229 ], [ 66.049805, 49.037868 ], [ 68.115234, 50.233152 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.291992, 60.500525 ], [ 67.631836, 59.998986 ], [ 68.247070, 58.309489 ], [ 65.786133, 57.160078 ], [ 62.666016, 57.633640 ], [ 61.787109, 59.288332 ], [ 64.291992, 60.500525 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82101ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.559570, 60.174306 ], [ 51.855469, 60.086763 ], [ 53.085938, 58.539595 ], [ 51.152344, 57.160078 ], [ 48.076172, 57.255281 ], [ 46.757812, 58.745407 ], [ 48.559570, 60.174306 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82105ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.523438, 65.256706 ], [ 65.390625, 64.848937 ], [ 66.181641, 63.273182 ], [ 63.457031, 62.124436 ], [ 59.897461, 62.492028 ], [ 58.798828, 64.033744 ], [ 61.523438, 65.256706 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8210c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 59.645540 ], [ 61.787109, 59.288332 ], [ 62.666016, 57.633640 ], [ 60.380859, 56.365250 ], [ 57.304688, 56.704506 ], [ 56.293945, 58.332567 ], [ 58.491211, 59.645540 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82211ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.413086, 49.582226 ], [ 66.049805, 49.037868 ], [ 66.577148, 47.279229 ], [ 64.643555, 46.073231 ], [ 62.182617, 46.589069 ], [ 61.479492, 48.312428 ], [ 63.413086, 49.582226 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82108ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.338867, 55.603178 ], [ 55.283203, 55.379110 ], [ 56.293945, 53.748711 ], [ 54.448242, 52.375599 ], [ 51.635742, 52.616390 ], [ 50.537109, 54.188155 ], [ 52.338867, 55.603178 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.580078, 47.724545 ], [ 57.128906, 47.398349 ], [ 57.919922, 45.706179 ], [ 56.293945, 44.370987 ], [ 53.876953, 44.715514 ], [ 52.998047, 46.346928 ], [ 54.580078, 47.724545 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.371094, 50.736455 ], [ 58.095703, 50.429518 ], [ 58.886719, 48.719961 ], [ 57.128906, 47.398349 ], [ 54.580078, 47.724545 ], [ 53.657227, 49.382373 ], [ 55.371094, 50.736455 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82109ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 0, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "822c6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 49.610710 ], [ 53.657227, 49.382373 ], [ 54.580078, 47.724545 ], [ 52.998047, 46.346928 ], [ 50.537109, 46.589069 ], [ 49.526367, 48.195387 ], [ 51.064453, 49.610710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 53.748711 ], [ 59.150391, 53.409532 ], [ 59.985352, 51.727028 ], [ 58.095703, 50.429518 ], [ 55.371094, 50.736455 ], [ 54.448242, 52.375599 ], [ 56.293945, 53.748711 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 282, "tippecanoe:min:GDP_MD": 282, "tippecanoe:max:GDP_MD": 282, "tippecanoe:sum:GDP_YEAR": 2012, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2012, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:max:GDP_YEAR": 2012, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": -58.738602, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_Y": -51.608913, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 27, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 1159320711, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:sum:POP_EST": 3398, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 3398, "tippecanoe:min:POP_EST": 3398, "tippecanoe:max:POP_EST": 3398, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424814, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID_EH": 23424814, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 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": "821087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.680664, 54.316523 ], [ 50.537109, 54.188155 ], [ 51.635742, 52.616390 ], [ 50.009766, 51.206883 ], [ 47.329102, 51.316881 ], [ 46.142578, 52.855864 ], [ 47.680664, 54.316523 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.876953, 44.715514 ], [ 56.293945, 44.370987 ], [ 57.041016, 42.714732 ], [ 55.546875, 41.376809 ], [ 53.261719, 41.705729 ], [ 52.382812, 43.357138 ], [ 53.876953, 44.715514 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.329102, 51.316881 ], [ 50.009766, 51.206883 ], [ 51.064453, 49.610710 ], [ 49.526367, 48.195387 ], [ 47.021484, 48.341646 ], [ 45.922852, 49.894634 ], [ 47.329102, 51.316881 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 45.367584 ], [ 49.130859, 45.182037 ], [ 50.097656, 43.612217 ], [ 48.735352, 42.228517 ], [ 46.538086, 42.391009 ], [ 45.483398, 43.961191 ], [ 46.757812, 45.367584 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.021484, 48.341646 ], [ 49.526367, 48.195387 ], [ 50.537109, 46.589069 ], [ 49.130859, 45.182037 ], [ 46.757812, 45.367584 ], [ 45.703125, 46.920255 ], [ 47.021484, 48.341646 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 46.589069 ], [ 52.998047, 46.346928 ], [ 53.876953, 44.715514 ], [ 52.382812, 43.357138 ], [ 50.097656, 43.612217 ], [ 49.130859, 45.182037 ], [ 50.537109, 46.589069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82212ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.215820, 54.699234 ], [ 64.160156, 54.265224 ], [ 64.819336, 52.536273 ], [ 62.753906, 51.289406 ], [ 59.985352, 51.727028 ], [ 59.150391, 53.409532 ], [ 61.215820, 54.699234 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8221affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.182617, 46.589069 ], [ 64.643555, 46.073231 ], [ 65.214844, 44.308127 ], [ 63.413086, 43.100983 ], [ 61.040039, 43.580391 ], [ 60.380859, 45.305803 ], [ 62.182617, 46.589069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.886719, 48.719961 ], [ 61.479492, 48.312428 ], [ 62.182617, 46.589069 ], [ 60.380859, 45.305803 ], [ 57.919922, 45.706179 ], [ 57.128906, 47.398349 ], [ 58.886719, 48.719961 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8221a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.919922, 45.706179 ], [ 60.380859, 45.305803 ], [ 61.040039, 43.580391 ], [ 59.370117, 42.293564 ], [ 57.041016, 42.714732 ], [ 56.293945, 44.370987 ], [ 57.919922, 45.706179 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.773438, 63.763065 ], [ 76.289062, 63.074866 ], [ 76.596680, 61.417750 ], [ 73.652344, 60.457218 ], [ 70.356445, 61.100789 ], [ 69.785156, 62.734601 ], [ 72.773438, 63.763065 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.132812, 63.801894 ], [ 89.252930, 62.835089 ], [ 88.945312, 61.185625 ], [ 85.825195, 60.500525 ], [ 82.836914, 61.438767 ], [ 82.836914, 63.094758 ], [ 86.132812, 63.801894 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.596680, 61.417750 ], [ 79.760742, 60.608542 ], [ 79.892578, 58.927334 ], [ 77.080078, 58.008098 ], [ 74.047852, 58.745407 ], [ 73.652344, 60.457218 ], [ 76.596680, 61.417750 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 66.302205 ], [ 79.321289, 65.549367 ], [ 79.497070, 63.937372 ], [ 76.289062, 63.074866 ], [ 72.773438, 63.763065 ], [ 72.290039, 65.366837 ], [ 75.629883, 66.302205 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.497070, 63.937372 ], [ 82.836914, 63.094758 ], [ 82.836914, 61.438767 ], [ 79.760742, 60.608542 ], [ 76.596680, 61.417750 ], [ 76.289062, 63.074866 ], [ 79.497070, 63.937372 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820b37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.356445, 61.100789 ], [ 73.652344, 60.457218 ], [ 74.047852, 58.745407 ], [ 71.367188, 57.704147 ], [ 68.247070, 58.309489 ], [ 67.631836, 59.998986 ], [ 70.356445, 61.100789 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "820baffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.836914, 61.438767 ], [ 85.825195, 60.500525 ], [ 85.693359, 58.813742 ], [ 82.792969, 58.054632 ], [ 79.892578, 58.927334 ], [ 79.760742, 60.608542 ], [ 82.836914, 61.438767 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822067fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.200195, 53.696706 ], [ 82.792969, 52.802761 ], [ 82.792969, 51.041394 ], [ 80.375977, 50.148746 ], [ 77.871094, 50.986099 ], [ 77.695312, 52.749594 ], [ 80.200195, 53.696706 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822057fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.463867, 48.341646 ], [ 82.749023, 47.457809 ], [ 82.749023, 45.675482 ], [ 80.595703, 44.777936 ], [ 78.354492, 45.583290 ], [ 78.178711, 47.398349 ], [ 80.463867, 48.341646 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822077fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 50.986099 ], [ 80.375977, 50.148746 ], [ 80.463867, 48.341646 ], [ 78.178711, 47.398349 ], [ 75.805664, 48.195387 ], [ 75.541992, 49.979488 ], [ 77.871094, 50.986099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822047fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.792969, 51.041394 ], [ 85.166016, 50.120578 ], [ 85.078125, 48.341646 ], [ 82.749023, 47.457809 ], [ 80.463867, 48.341646 ], [ 80.375977, 50.148746 ], [ 82.792969, 51.041394 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.354492, 45.583290 ], [ 80.595703, 44.777936 ], [ 80.639648, 42.972502 ], [ 78.618164, 42.000325 ], [ 76.420898, 42.811522 ], [ 76.245117, 44.590467 ], [ 78.354492, 45.583290 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.873047, 53.146770 ], [ 72.597656, 52.482780 ], [ 72.993164, 50.708634 ], [ 70.751953, 49.610710 ], [ 68.115234, 50.233152 ], [ 67.587891, 51.998410 ], [ 69.873047, 53.146770 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82202ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.993164, 50.708634 ], [ 75.541992, 49.979488 ], [ 75.805664, 48.195387 ], [ 73.608398, 47.129951 ], [ 71.147461, 47.842658 ], [ 70.751953, 49.610710 ], [ 72.993164, 50.708634 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82215ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.014648, 53.540307 ], [ 77.695312, 52.749594 ], [ 77.871094, 50.986099 ], [ 75.541992, 49.979488 ], [ 72.993164, 50.708634 ], [ 72.597656, 52.482780 ], [ 75.014648, 53.540307 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82204ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.583008, 50.903033 ], [ 89.824219, 49.894634 ], [ 89.560547, 48.136767 ], [ 87.275391, 47.368594 ], [ 85.078125, 48.341646 ], [ 85.166016, 50.120578 ], [ 87.583008, 50.903033 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.147461, 47.842658 ], [ 73.608398, 47.129951 ], [ 73.916016, 45.336702 ], [ 71.894531, 44.245199 ], [ 69.521484, 44.902578 ], [ 69.082031, 46.679594 ], [ 71.147461, 47.842658 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82201ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.916016, 45.336702 ], [ 76.245117, 44.590467 ], [ 76.420898, 42.811522 ], [ 74.443359, 41.771312 ], [ 72.202148, 42.455888 ], [ 71.894531, 44.245199 ], [ 73.916016, 45.336702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82200ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.805664, 48.195387 ], [ 78.178711, 47.398349 ], [ 78.354492, 45.583290 ], [ 76.245117, 44.590467 ], [ 73.916016, 45.336702 ], [ 73.608398, 47.129951 ], [ 75.805664, 48.195387 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, 44.902578 ], [ 71.894531, 44.245199 ], [ 72.202148, 42.455888 ], [ 70.312500, 41.343825 ], [ 68.027344, 42.000325 ], [ 67.587891, 43.739352 ], [ 69.521484, 44.902578 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82206ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.341797, 53.644638 ], [ 87.758789, 52.643063 ], [ 87.583008, 50.903033 ], [ 85.166016, 50.120578 ], [ 82.792969, 51.041394 ], [ 82.792969, 52.802761 ], [ 85.341797, 53.644638 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82205ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.078125, 48.341646 ], [ 87.275391, 47.368594 ], [ 87.099609, 45.614037 ], [ 84.902344, 44.777936 ], [ 82.749023, 45.675482 ], [ 82.749023, 47.457809 ], [ 85.078125, 48.341646 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.749023, 45.675482 ], [ 84.902344, 44.777936 ], [ 84.814453, 43.004647 ], [ 82.749023, 42.130821 ], [ 80.639648, 42.972502 ], [ 80.595703, 44.777936 ], [ 82.749023, 45.675482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8225b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.099609, 45.614037 ], [ 89.121094, 44.621754 ], [ 88.945312, 42.875964 ], [ 86.835938, 42.065607 ], [ 84.814453, 43.004647 ], [ 84.902344, 44.777936 ], [ 87.099609, 45.614037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.928711, 3.030812 ], [ 68.159180, 2.152814 ], [ 67.895508, 0.703107 ], [ 66.357422, 0.175781 ], [ 65.126953, 1.054628 ], [ 65.434570, 2.504085 ], [ 66.928711, 3.030812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822cc7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.690430, 38.754083 ], [ 54.843750, 38.444985 ], [ 55.590820, 36.809285 ], [ 54.228516, 35.532226 ], [ 52.163086, 35.853440 ], [ 51.372070, 37.439974 ], [ 52.690430, 38.754083 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822cf7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.306641, 37.718590 ], [ 51.372070, 37.439974 ], [ 52.163086, 35.853440 ], [ 50.932617, 34.597042 ], [ 48.955078, 34.849875 ], [ 48.120117, 36.421282 ], [ 49.306641, 37.718590 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824317fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.833008, 28.420391 ], [ 55.678711, 28.033198 ], [ 56.293945, 26.549223 ], [ 55.107422, 25.443275 ], [ 53.349609, 25.799891 ], [ 52.690430, 27.293689 ], [ 53.833008, 28.420391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ca7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.661133, 25.204941 ], [ 84.199219, 24.407138 ], [ 84.111328, 22.715390 ], [ 82.529297, 21.861499 ], [ 80.991211, 22.674847 ], [ 81.035156, 24.327077 ], [ 82.661133, 25.204941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.852539, 23.241346 ], [ 65.522461, 22.755921 ], [ 65.917969, 21.248422 ], [ 64.643555, 20.303418 ], [ 62.973633, 20.797201 ], [ 62.534180, 22.228090 ], [ 63.852539, 23.241346 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 26.273714 ], [ 69.697266, 25.720735 ], [ 70.004883, 24.166802 ], [ 68.598633, 23.200961 ], [ 66.884766, 23.725012 ], [ 66.533203, 25.244696 ], [ 67.939453, 26.273714 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.168945, 24.527135 ], [ 74.838867, 23.926013 ], [ 75.014648, 22.390714 ], [ 73.564453, 21.493964 ], [ 71.938477, 22.065278 ], [ 71.718750, 23.604262 ], [ 73.168945, 24.527135 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824377fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.315430, 34.777716 ], [ 60.380859, 34.307144 ], [ 60.952148, 32.657876 ], [ 59.545898, 31.503629 ], [ 57.568359, 31.952162 ], [ 56.953125, 33.541395 ], [ 58.315430, 34.777716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82856ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.378906, 5.178482 ], [ 69.653320, 4.302591 ], [ 69.653320, 2.723583 ], [ 68.159180, 2.152814 ], [ 66.928711, 3.030812 ], [ 67.192383, 4.434044 ], [ 68.378906, 5.178482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ce7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.658203, 40.647304 ], [ 51.855469, 40.380028 ], [ 52.690430, 38.754083 ], [ 51.372070, 37.439974 ], [ 49.306641, 37.718590 ], [ 48.427734, 39.300299 ], [ 49.658203, 40.647304 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82438ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 24.607069 ], [ 60.380859, 24.166802 ], [ 60.864258, 22.715390 ], [ 59.633789, 21.698265 ], [ 57.963867, 22.105999 ], [ 57.436523, 23.563987 ], [ 58.623047, 24.607069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.958984, 22.553147 ], [ 79.453125, 21.820708 ], [ 79.409180, 20.138470 ], [ 77.871094, 19.269665 ], [ 76.420898, 20.014645 ], [ 76.464844, 21.698265 ], [ 77.958984, 22.553147 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823cb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.991211, 22.674847 ], [ 82.529297, 21.861499 ], [ 82.485352, 20.179724 ], [ 80.903320, 19.311143 ], [ 79.409180, 20.138470 ], [ 79.453125, 21.820708 ], [ 80.991211, 22.674847 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824387fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.722656, 23.966176 ], [ 57.436523, 23.563987 ], [ 57.963867, 22.105999 ], [ 56.821289, 21.125498 ], [ 55.195312, 21.493964 ], [ 54.580078, 22.917923 ], [ 55.722656, 23.966176 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.004883, 24.166802 ], [ 71.718750, 23.604262 ], [ 71.938477, 22.065278 ], [ 70.532227, 21.166484 ], [ 68.906250, 21.698265 ], [ 68.598633, 23.200961 ], [ 70.004883, 24.166802 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.247070, 14.732386 ], [ 69.521484, 14.008696 ], [ 69.565430, 12.382928 ], [ 68.291016, 11.566144 ], [ 67.016602, 12.297068 ], [ 67.016602, 13.880746 ], [ 68.247070, 14.732386 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825267fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.405273, 21.983801 ], [ 51.987305, 21.943046 ], [ 52.602539, 20.550509 ], [ 51.723633, 19.186678 ], [ 50.185547, 19.186678 ], [ 49.482422, 20.591652 ], [ 50.405273, 21.983801 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8243affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 26.549223 ], [ 58.051758, 26.115986 ], [ 58.623047, 24.607069 ], [ 57.436523, 23.563987 ], [ 55.722656, 23.966176 ], [ 55.107422, 25.443275 ], [ 56.293945, 26.549223 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823caffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.825195, 25.244696 ], [ 87.407227, 24.407138 ], [ 87.319336, 22.715390 ], [ 85.693359, 21.902278 ], [ 84.111328, 22.715390 ], [ 84.199219, 24.407138 ], [ 85.825195, 25.244696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ccffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 39.740986 ], [ 58.491211, 39.334297 ], [ 59.150391, 37.649034 ], [ 57.700195, 36.421282 ], [ 55.590820, 36.809285 ], [ 54.843750, 38.444985 ], [ 56.293945, 39.740986 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.111328, 22.715390 ], [ 85.693359, 21.902278 ], [ 85.605469, 20.179724 ], [ 83.979492, 19.311143 ], [ 82.485352, 20.179724 ], [ 82.529297, 21.861499 ], [ 84.111328, 22.715390 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82609ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.014648, 22.390714 ], [ 76.464844, 21.698265 ], [ 76.420898, 20.014645 ], [ 74.970703, 19.145168 ], [ 73.564453, 19.890723 ], [ 73.564453, 21.493964 ], [ 75.014648, 22.390714 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82428ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.917969, 21.248422 ], [ 67.587891, 20.756114 ], [ 67.895508, 19.311143 ], [ 66.621094, 18.396230 ], [ 64.995117, 18.895893 ], [ 64.643555, 20.303418 ], [ 65.917969, 21.248422 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824267fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.983398, 33.906896 ], [ 69.960938, 33.284620 ], [ 70.312500, 31.615966 ], [ 68.730469, 30.562261 ], [ 66.796875, 31.128199 ], [ 66.401367, 32.805745 ], [ 67.983398, 33.906896 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.333008, 24.846565 ], [ 78.002930, 24.206890 ], [ 77.958984, 22.553147 ], [ 76.464844, 21.698265 ], [ 75.014648, 22.390714 ], [ 74.838867, 23.926013 ], [ 76.333008, 24.846565 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82535ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.032227, 23.443089 ], [ 49.702148, 23.402765 ], [ 50.405273, 21.983801 ], [ 49.482422, 20.591652 ], [ 47.856445, 20.591652 ], [ 47.109375, 22.024546 ], [ 48.032227, 23.443089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824357fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.952148, 32.657876 ], [ 62.929688, 32.175612 ], [ 63.413086, 30.562261 ], [ 62.006836, 29.420460 ], [ 60.117188, 29.916852 ], [ 59.545898, 31.503629 ], [ 60.952148, 32.657876 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824327fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.723633, 33.027088 ], [ 53.657227, 32.694866 ], [ 54.360352, 31.128199 ], [ 53.173828, 29.954935 ], [ 51.284180, 30.259067 ], [ 50.537109, 31.802893 ], [ 51.723633, 33.027088 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82435ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.423828, 33.321349 ], [ 66.401367, 32.805745 ], [ 66.796875, 31.128199 ], [ 65.302734, 30.031055 ], [ 63.413086, 30.562261 ], [ 62.929688, 32.175612 ], [ 64.423828, 33.321349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82434ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.522461, 36.173357 ], [ 67.587891, 35.603719 ], [ 67.983398, 33.906896 ], [ 66.401367, 32.805745 ], [ 64.423828, 33.321349 ], [ 63.940430, 35.029996 ], [ 65.522461, 36.173357 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82439ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.963867, 22.105999 ], [ 59.633789, 21.698265 ], [ 60.117188, 20.262197 ], [ 58.974609, 19.311143 ], [ 57.348633, 19.725342 ], [ 56.821289, 21.125498 ], [ 57.963867, 22.105999 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.647461, 32.063956 ], [ 50.537109, 31.802893 ], [ 51.284180, 30.259067 ], [ 50.185547, 29.075375 ], [ 48.427734, 29.190533 ], [ 47.636719, 30.675715 ], [ 48.647461, 32.063956 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.319336, 22.715390 ], [ 88.901367, 21.820708 ], [ 88.813477, 20.097206 ], [ 87.143555, 19.269665 ], [ 85.605469, 20.179724 ], [ 85.693359, 21.902278 ], [ 87.319336, 22.715390 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8243b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 23.281719 ], [ 54.580078, 22.917923 ], [ 55.195312, 21.493964 ], [ 54.096680, 20.509355 ], [ 52.602539, 20.550509 ], [ 51.987305, 21.943046 ], [ 52.910156, 23.281719 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.938477, 22.065278 ], [ 73.564453, 21.493964 ], [ 73.564453, 19.890723 ], [ 72.158203, 18.979026 ], [ 70.795898, 19.725342 ], [ 70.532227, 21.166484 ], [ 71.938477, 22.065278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82605ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.016602, 12.297068 ], [ 68.291016, 11.566144 ], [ 68.334961, 9.968851 ], [ 67.104492, 9.145486 ], [ 65.874023, 9.925566 ], [ 65.830078, 11.480025 ], [ 67.016602, 12.297068 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.541016, 25.085599 ], [ 81.035156, 24.327077 ], [ 80.991211, 22.674847 ], [ 79.453125, 21.820708 ], [ 77.958984, 22.553147 ], [ 78.002930, 24.206890 ], [ 79.541016, 25.085599 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82431ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.909180, 29.190533 ], [ 58.754883, 28.767659 ], [ 59.326172, 27.215556 ], [ 58.051758, 26.115986 ], [ 56.293945, 26.549223 ], [ 55.678711, 28.033198 ], [ 56.909180, 29.190533 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.955078, 34.849875 ], [ 50.932617, 34.597042 ], [ 51.723633, 33.027088 ], [ 50.537109, 31.802893 ], [ 48.647461, 32.063956 ], [ 47.856445, 33.578015 ], [ 48.955078, 34.849875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824307fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.360352, 31.128199 ], [ 56.293945, 30.751278 ], [ 56.909180, 29.190533 ], [ 55.678711, 28.033198 ], [ 53.833008, 28.420391 ], [ 53.173828, 29.954935 ], [ 54.360352, 31.128199 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822cdffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.590820, 36.809285 ], [ 57.700195, 36.421282 ], [ 58.315430, 34.777716 ], [ 56.953125, 33.541395 ], [ 54.931641, 33.943360 ], [ 54.228516, 35.532226 ], [ 55.590820, 36.809285 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824277fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.796875, 31.128199 ], [ 68.730469, 30.562261 ], [ 69.082031, 28.921631 ], [ 67.587891, 27.877928 ], [ 65.742188, 28.420391 ], [ 65.302734, 30.031055 ], [ 66.796875, 31.128199 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822caffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.098633, 36.633162 ], [ 48.120117, 36.421282 ], [ 48.955078, 34.849875 ], [ 47.856445, 33.578015 ], [ 45.966797, 33.724340 ], [ 45.043945, 35.245619 ], [ 46.098633, 36.633162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82606ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.104492, 7.580328 ], [ 68.378906, 6.751896 ], [ 68.378906, 5.178482 ], [ 67.192383, 4.434044 ], [ 65.961914, 5.222247 ], [ 65.917969, 6.795535 ], [ 67.104492, 7.580328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82420ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 28.420391 ], [ 67.587891, 27.877928 ], [ 67.939453, 26.273714 ], [ 66.533203, 25.244696 ], [ 64.731445, 25.799891 ], [ 64.335938, 27.332735 ], [ 65.742188, 28.420391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82432ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.931641, 33.943360 ], [ 56.953125, 33.541395 ], [ 57.568359, 31.952162 ], [ 56.293945, 30.751278 ], [ 54.360352, 31.128199 ], [ 53.657227, 32.694866 ], [ 54.931641, 33.943360 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82534ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.668945, 24.766785 ], [ 52.250977, 24.686952 ], [ 52.910156, 23.281719 ], [ 51.987305, 21.943046 ], [ 50.405273, 21.983801 ], [ 49.702148, 23.402765 ], [ 50.668945, 24.766785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.928711, 17.056785 ], [ 68.203125, 16.341226 ], [ 68.247070, 14.732386 ], [ 67.016602, 13.880746 ], [ 65.742188, 14.604847 ], [ 65.742188, 16.172473 ], [ 66.928711, 17.056785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826047fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.334961, 9.968851 ], [ 69.565430, 9.145486 ], [ 69.609375, 7.536764 ], [ 68.378906, 6.751896 ], [ 67.104492, 7.580328 ], [ 67.104492, 9.145486 ], [ 68.334961, 9.968851 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.864258, 22.715390 ], [ 62.534180, 22.228090 ], [ 62.973633, 20.797201 ], [ 61.787109, 19.849394 ], [ 60.117188, 20.262197 ], [ 59.633789, 21.698265 ], [ 60.864258, 22.715390 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.884766, 23.725012 ], [ 68.598633, 23.200961 ], [ 68.906250, 21.698265 ], [ 67.587891, 20.756114 ], [ 65.917969, 21.248422 ], [ 65.522461, 22.755921 ], [ 66.884766, 23.725012 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.895508, 19.311143 ], [ 69.477539, 18.812718 ], [ 69.521484, 17.224758 ], [ 68.203125, 16.341226 ], [ 66.928711, 17.056785 ], [ 66.621094, 18.396230 ], [ 67.895508, 19.311143 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822c1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.318359, 39.470125 ], [ 48.427734, 39.300299 ], [ 49.306641, 37.718590 ], [ 48.120117, 36.421282 ], [ 46.098633, 36.633162 ], [ 45.175781, 38.134557 ], [ 46.318359, 39.470125 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 39.061849 ], [ 68.862305, 38.479395 ], [ 69.257812, 36.738884 ], [ 67.587891, 35.603719 ], [ 65.522461, 36.173357 ], [ 65.039062, 37.892196 ], [ 66.708984, 39.061849 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822cd7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.163086, 35.853440 ], [ 54.228516, 35.532226 ], [ 54.931641, 33.943360 ], [ 53.657227, 32.694866 ], [ 51.723633, 33.027088 ], [ 50.932617, 34.597042 ], [ 52.163086, 35.853440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824337fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 30.259067 ], [ 53.173828, 29.954935 ], [ 53.833008, 28.420391 ], [ 52.690430, 27.293689 ], [ 50.888672, 27.605671 ], [ 50.185547, 29.075375 ], [ 51.284180, 30.259067 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825367fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.427734, 29.190533 ], [ 50.185547, 29.075375 ], [ 50.888672, 27.605671 ], [ 49.921875, 26.234302 ], [ 48.251953, 26.313113 ], [ 47.460938, 27.800210 ], [ 48.427734, 29.190533 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825347fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.251953, 26.313113 ], [ 49.921875, 26.234302 ], [ 50.668945, 24.766785 ], [ 49.702148, 23.402765 ], [ 48.032227, 23.443089 ], [ 47.285156, 24.886436 ], [ 48.251953, 26.313113 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82536ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.888672, 27.605671 ], [ 52.690430, 27.293689 ], [ 53.349609, 25.799891 ], [ 52.250977, 24.686952 ], [ 50.668945, 24.766785 ], [ 49.921875, 26.234302 ], [ 50.888672, 27.605671 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8243a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.349609, 25.799891 ], [ 55.107422, 25.443275 ], [ 55.722656, 23.966176 ], [ 54.580078, 22.917923 ], [ 52.910156, 23.281719 ], [ 52.250977, 24.686952 ], [ 53.349609, 25.799891 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824367fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 61.303711, 37.195331 ], [ 61.875000, 35.532226 ], [ 60.380859, 34.307144 ], [ 58.315430, 34.777716 ], [ 57.700195, 36.421282 ], [ 59.150391, 37.649034 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824347fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875000, 35.532226 ], [ 63.940430, 35.029996 ], [ 64.423828, 33.321349 ], [ 62.929688, 32.175612 ], [ 60.952148, 32.657876 ], [ 60.380859, 34.307144 ], [ 61.875000, 35.532226 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82436ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.885742, 38.410558 ], [ 65.039062, 37.892196 ], [ 65.522461, 36.173357 ], [ 63.940430, 35.029996 ], [ 61.875000, 35.532226 ], [ 61.303711, 37.195331 ], [ 62.885742, 38.410558 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.073242, 40.613952 ], [ 62.314453, 40.145289 ], [ 62.885742, 38.410558 ], [ 61.303711, 37.195331 ], [ 59.150391, 37.649034 ], [ 58.491211, 39.334297 ], [ 60.073242, 40.613952 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824207fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.490234, 27.839076 ], [ 64.335938, 27.332735 ], [ 64.731445, 25.799891 ], [ 63.413086, 24.766785 ], [ 61.655273, 25.244696 ], [ 61.127930, 26.745610 ], [ 62.490234, 27.839076 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824217fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.655273, 25.244696 ], [ 63.413086, 24.766785 ], [ 63.852539, 23.241346 ], [ 62.534180, 22.228090 ], [ 60.864258, 22.715390 ], [ 60.380859, 24.166802 ], [ 61.655273, 25.244696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824227fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.117188, 29.916852 ], [ 62.006836, 29.420460 ], [ 62.490234, 27.839076 ], [ 61.127930, 26.745610 ], [ 59.326172, 27.215556 ], [ 58.754883, 28.767659 ], [ 60.117188, 29.916852 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82430ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.568359, 31.952162 ], [ 59.545898, 31.503629 ], [ 60.117188, 29.916852 ], [ 58.754883, 28.767659 ], [ 56.909180, 29.190533 ], [ 56.293945, 30.751278 ], [ 57.568359, 31.952162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824237fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.326172, 27.215556 ], [ 61.127930, 26.745610 ], [ 61.655273, 25.244696 ], [ 60.380859, 24.166802 ], [ 58.623047, 24.607069 ], [ 58.051758, 26.115986 ], [ 59.326172, 27.215556 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82422ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.413086, 30.562261 ], [ 65.302734, 30.031055 ], [ 65.742188, 28.420391 ], [ 64.335938, 27.332735 ], [ 62.490234, 27.839076 ], [ 62.006836, 29.420460 ], [ 63.413086, 30.562261 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82421ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.731445, 25.799891 ], [ 66.533203, 25.244696 ], [ 66.884766, 23.725012 ], [ 65.522461, 22.755921 ], [ 63.852539, 23.241346 ], [ 63.413086, 24.766785 ], [ 64.731445, 25.799891 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826207fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.700195, 11.609193 ], [ 59.150391, 11.221510 ], [ 59.194336, 9.752370 ], [ 57.832031, 9.275622 ], [ 56.909180, 10.401378 ], [ 57.700195, 11.609193 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.480469, 8.015716 ], [ 58.535156, 7.318882 ], [ 58.227539, 6.009459 ], [ 56.777344, 5.484768 ], [ 55.854492, 6.664608 ], [ 56.206055, 7.928675 ], [ 57.480469, 8.015716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82629ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.425781, 4.171115 ], [ 57.524414, 3.381824 ], [ 57.172852, 1.977147 ], [ 55.722656, 1.450040 ], [ 54.711914, 2.635789 ], [ 55.107422, 4.039618 ], [ 56.425781, 4.171115 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825257fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.262695, 17.811456 ], [ 49.921875, 16.467695 ], [ 49.086914, 15.114553 ], [ 47.548828, 15.072124 ], [ 46.801758, 16.383391 ], [ 47.680664, 17.811456 ], [ 49.262695, 17.811456 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824397fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.195312, 21.493964 ], [ 56.821289, 21.125498 ], [ 57.348633, 19.725342 ], [ 56.293945, 18.771115 ], [ 54.667969, 19.145168 ], [ 54.096680, 20.509355 ], [ 55.195312, 21.493964 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825247fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.723633, 19.186678 ], [ 52.338867, 17.853290 ], [ 51.459961, 16.509833 ], [ 49.921875, 16.467695 ], [ 49.262695, 17.811456 ], [ 50.185547, 19.186678 ], [ 51.723633, 19.186678 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826317fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.766602, 16.509833 ], [ 56.293945, 15.241790 ], [ 55.415039, 13.966054 ], [ 54.052734, 13.966054 ], [ 53.481445, 15.241790 ], [ 54.360352, 16.509833 ], [ 55.766602, 16.509833 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82524ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.789062, 17.853290 ], [ 54.360352, 16.509833 ], [ 53.481445, 15.241790 ], [ 52.075195, 15.199386 ], [ 51.459961, 16.509833 ], [ 52.338867, 17.853290 ], [ 53.789062, 17.853290 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826337fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.667969, 19.145168 ], [ 56.293945, 18.771115 ], [ 56.821289, 17.434511 ], [ 55.766602, 16.509833 ], [ 54.360352, 16.509833 ], [ 53.789062, 17.853290 ], [ 54.667969, 19.145168 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826237fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.260742, 12.768946 ], [ 57.700195, 11.609193 ], [ 56.909180, 10.401378 ], [ 55.634766, 10.314919 ], [ 55.107422, 11.523088 ], [ 55.942383, 12.768946 ], [ 57.260742, 12.768946 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826217fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.909180, 10.401378 ], [ 57.832031, 9.275622 ], [ 57.480469, 8.015716 ], [ 56.206055, 7.928675 ], [ 55.239258, 9.102097 ], [ 55.634766, 10.314919 ], [ 56.909180, 10.401378 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82634ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.643555, 12.211180 ], [ 65.830078, 11.480025 ], [ 65.874023, 9.925566 ], [ 64.687500, 9.145486 ], [ 63.544922, 9.882275 ], [ 63.500977, 11.393879 ], [ 64.643555, 12.211180 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 12.468760 ], [ 49.526367, 11.221510 ], [ 48.691406, 9.882275 ], [ 47.241211, 9.752370 ], [ 46.538086, 11.005904 ], [ 47.373047, 12.382928 ], [ 48.867188, 12.468760 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82525ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.459961, 16.509833 ], [ 52.075195, 15.199386 ], [ 51.196289, 13.880746 ], [ 49.746094, 13.795406 ], [ 49.086914, 15.114553 ], [ 49.921875, 16.467695 ], [ 51.459961, 16.509833 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826307fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.821289, 17.434511 ], [ 58.359375, 17.014768 ], [ 58.842773, 15.749963 ], [ 57.788086, 14.859850 ], [ 56.293945, 15.241790 ], [ 55.766602, 16.509833 ], [ 56.821289, 17.434511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82638ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.107422, 11.523088 ], [ 55.634766, 10.314919 ], [ 55.239258, 9.102097 ], [ 53.920898, 9.015302 ], [ 52.954102, 10.185187 ], [ 53.745117, 11.436955 ], [ 55.107422, 11.523088 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8263b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.196289, 13.880746 ], [ 51.811523, 12.597455 ], [ 50.976562, 11.307708 ], [ 49.526367, 11.221510 ], [ 48.867188, 12.468760 ], [ 49.746094, 13.795406 ], [ 51.196289, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82635ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.314453, 12.125264 ], [ 63.500977, 11.393879 ], [ 63.544922, 9.882275 ], [ 62.446289, 9.102097 ], [ 61.303711, 9.838979 ], [ 61.259766, 11.307708 ], [ 62.314453, 12.125264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825277fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, 20.591652 ], [ 50.185547, 19.186678 ], [ 49.262695, 17.811456 ], [ 47.680664, 17.811456 ], [ 46.977539, 19.186678 ], [ 47.856445, 20.591652 ], [ 49.482422, 20.591652 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826397fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 11.307708 ], [ 51.547852, 10.098670 ], [ 51.152344, 8.798225 ], [ 49.702148, 8.667918 ], [ 48.691406, 9.882275 ], [ 49.526367, 11.221510 ], [ 50.976562, 11.307708 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82622ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.161133, 11.996338 ], [ 61.259766, 11.307708 ], [ 61.303711, 9.838979 ], [ 60.292969, 9.058702 ], [ 59.194336, 9.752370 ], [ 59.150391, 11.221510 ], [ 60.161133, 11.996338 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82631ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 15.241790 ], [ 57.788086, 14.859850 ], [ 58.271484, 13.624633 ], [ 57.260742, 12.768946 ], [ 55.942383, 12.768946 ], [ 55.415039, 13.966054 ], [ 56.293945, 15.241790 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826387fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.217773, 12.683215 ], [ 53.745117, 11.436955 ], [ 52.954102, 10.185187 ], [ 51.547852, 10.098670 ], [ 50.976562, 11.307708 ], [ 51.811523, 12.597455 ], [ 53.217773, 12.683215 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826287fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.854492, 6.664608 ], [ 56.777344, 5.484768 ], [ 56.425781, 4.171115 ], [ 55.107422, 4.039618 ], [ 54.096680, 5.222247 ], [ 54.492188, 6.533645 ], [ 55.854492, 6.664608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8252effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.086914, 15.114553 ], [ 49.746094, 13.795406 ], [ 48.867188, 12.468760 ], [ 47.373047, 12.382928 ], [ 46.669922, 13.667338 ], [ 47.548828, 15.072124 ], [ 49.086914, 15.114553 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82526ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.602539, 20.550509 ], [ 54.096680, 20.509355 ], [ 54.667969, 19.145168 ], [ 53.789062, 17.853290 ], [ 52.338867, 17.853290 ], [ 51.723633, 19.186678 ], [ 52.602539, 20.550509 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8263a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.481445, 15.241790 ], [ 54.052734, 13.966054 ], [ 53.217773, 12.683215 ], [ 51.811523, 12.597455 ], [ 51.196289, 13.880746 ], [ 52.075195, 15.199386 ], [ 53.481445, 15.241790 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8263affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.415039, 13.966054 ], [ 55.942383, 12.768946 ], [ 55.107422, 11.523088 ], [ 53.745117, 11.436955 ], [ 53.217773, 12.683215 ], [ 54.052734, 13.966054 ], [ 55.415039, 13.966054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ab7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.723633, 6.271618 ], [ 52.734375, 5.047171 ], [ 52.294922, 3.688855 ], [ 50.888672, 3.513421 ], [ 49.833984, 4.740675 ], [ 50.273438, 6.140555 ], [ 51.723633, 6.271618 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.262695, 7.362467 ], [ 50.273438, 6.140555 ], [ 49.833984, 4.740675 ], [ 48.383789, 4.565474 ], [ 47.329102, 5.834616 ], [ 47.812500, 7.231699 ], [ 49.262695, 7.362467 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827aa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.833984, 4.740675 ], [ 50.888672, 3.513421 ], [ 50.449219, 2.108899 ], [ 48.955078, 1.889306 ], [ 47.900391, 3.162456 ], [ 48.383789, 4.565474 ], [ 49.833984, 4.740675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.691406, 9.882275 ], [ 49.702148, 8.667918 ], [ 49.262695, 7.362467 ], [ 47.812500, 7.231699 ], [ 46.757812, 8.450639 ], [ 47.241211, 9.752370 ], [ 48.691406, 9.882275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 8.798225 ], [ 52.119141, 7.623887 ], [ 51.723633, 6.271618 ], [ 50.273438, 6.140555 ], [ 49.262695, 7.362467 ], [ 49.702148, 8.667918 ], [ 51.152344, 8.798225 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827b9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.294922, 3.688855 ], [ 53.305664, 2.460181 ], [ 52.910156, 1.054628 ], [ 51.459961, 0.834931 ], [ 50.449219, 2.108899 ], [ 50.888672, 3.513421 ], [ 52.294922, 3.688855 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.525391, 7.710992 ], [ 54.492188, 6.533645 ], [ 54.096680, 5.222247 ], [ 52.734375, 5.047171 ], [ 51.723633, 6.271618 ], [ 52.119141, 7.623887 ], [ 53.525391, 7.710992 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827aaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.329102, 5.834616 ], [ 48.383789, 4.565474 ], [ 47.900391, 3.162456 ], [ 46.362305, 2.986927 ], [ 45.307617, 4.214943 ], [ 45.791016, 5.659719 ], [ 47.329102, 5.834616 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 3.162456 ], [ 48.955078, 1.889306 ], [ 48.471680, 0.439449 ], [ 46.933594, 0.219726 ], [ 45.878906, 1.493971 ], [ 46.362305, 2.986927 ], [ 47.900391, 3.162456 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.239258, 9.102097 ], [ 56.206055, 7.928675 ], [ 55.854492, 6.664608 ], [ 54.492188, 6.533645 ], [ 53.525391, 7.710992 ], [ 53.920898, 9.015302 ], [ 55.239258, 9.102097 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82639ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.954102, 10.185187 ], [ 53.920898, 9.015302 ], [ 53.525391, 7.710992 ], [ 52.119141, 7.623887 ], [ 51.152344, 8.798225 ], [ 51.547852, 10.098670 ], [ 52.954102, 10.185187 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826297fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.096680, 5.222247 ], [ 55.107422, 4.039618 ], [ 54.711914, 2.635789 ], [ 53.305664, 2.460181 ], [ 52.294922, 3.688855 ], [ 52.734375, 5.047171 ], [ 54.096680, 5.222247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826357fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.776367, 14.051331 ], [ 62.270508, 13.624633 ], [ 62.314453, 12.125264 ], [ 61.259766, 11.307708 ], [ 60.161133, 11.996338 ], [ 59.721680, 13.197165 ], [ 60.776367, 14.051331 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82632ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.458008, 17.936929 ], [ 61.040039, 17.518344 ], [ 61.479492, 16.172473 ], [ 60.380859, 15.326572 ], [ 58.842773, 15.749963 ], [ 58.359375, 17.014768 ], [ 59.458008, 17.936929 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82429ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.995117, 18.895893 ], [ 66.621094, 18.396230 ], [ 66.928711, 17.056785 ], [ 65.742188, 16.172473 ], [ 64.160156, 16.636192 ], [ 63.808594, 17.978733 ], [ 64.995117, 18.895893 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824287fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.973633, 20.797201 ], [ 64.643555, 20.303418 ], [ 64.995117, 18.895893 ], [ 63.808594, 17.978733 ], [ 62.182617, 18.437925 ], [ 61.787109, 19.849394 ], [ 62.973633, 20.797201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.117188, 20.262197 ], [ 61.787109, 19.849394 ], [ 62.182617, 18.437925 ], [ 61.040039, 17.518344 ], [ 59.458008, 17.936929 ], [ 58.974609, 19.311143 ], [ 60.117188, 20.262197 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826377fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.479492, 16.172473 ], [ 63.017578, 15.749963 ], [ 63.413086, 14.477234 ], [ 62.270508, 13.624633 ], [ 60.776367, 14.051331 ], [ 60.380859, 15.326572 ], [ 61.479492, 16.172473 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826327fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.348633, 19.725342 ], [ 58.974609, 19.311143 ], [ 59.458008, 17.936929 ], [ 58.359375, 17.014768 ], [ 56.821289, 17.434511 ], [ 56.293945, 18.771115 ], [ 57.348633, 19.725342 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824297fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.182617, 18.437925 ], [ 63.808594, 17.978733 ], [ 64.160156, 16.636192 ], [ 63.017578, 15.749963 ], [ 61.479492, 16.172473 ], [ 61.040039, 17.518344 ], [ 62.182617, 18.437925 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82630ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.842773, 15.749963 ], [ 60.380859, 15.326572 ], [ 60.776367, 14.051331 ], [ 59.721680, 13.197165 ], [ 58.271484, 13.624633 ], [ 57.788086, 14.859850 ], [ 58.842773, 15.749963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826227fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.271484, 13.624633 ], [ 59.721680, 13.197165 ], [ 60.161133, 11.996338 ], [ 59.150391, 11.221510 ], [ 57.700195, 11.609193 ], [ 57.260742, 12.768946 ], [ 58.271484, 13.624633 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826347fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.413086, 14.477234 ], [ 64.599609, 13.752725 ], [ 64.643555, 12.211180 ], [ 63.500977, 11.393879 ], [ 62.314453, 12.125264 ], [ 62.270508, 13.624633 ], [ 63.413086, 14.477234 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82636ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 14.604847 ], [ 67.016602, 13.880746 ], [ 67.016602, 12.297068 ], [ 65.830078, 11.480025 ], [ 64.643555, 12.211180 ], [ 64.599609, 13.752725 ], [ 65.742188, 14.604847 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826367fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.160156, 16.636192 ], [ 65.742188, 16.172473 ], [ 65.742188, 14.604847 ], [ 64.599609, 13.752725 ], [ 63.413086, 14.477234 ], [ 63.017578, 15.749963 ], [ 64.160156, 16.636192 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.490234, 7.580328 ], [ 63.632812, 6.839170 ], [ 63.325195, 5.528511 ], [ 61.875000, 5.003394 ], [ 60.732422, 5.790897 ], [ 61.040039, 7.057282 ], [ 62.490234, 7.580328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.303711, 9.838979 ], [ 62.446289, 9.102097 ], [ 62.490234, 7.580328 ], [ 61.040039, 7.057282 ], [ 59.941406, 7.841615 ], [ 60.292969, 9.058702 ], [ 61.303711, 9.838979 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.732422, 5.790897 ], [ 61.875000, 5.003394 ], [ 61.567383, 3.645000 ], [ 60.073242, 3.074695 ], [ 58.974609, 3.908099 ], [ 59.282227, 5.266008 ], [ 60.732422, 5.790897 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 7.841615 ], [ 61.040039, 7.057282 ], [ 60.732422, 5.790897 ], [ 59.282227, 5.266008 ], [ 58.227539, 6.009459 ], [ 58.535156, 7.318882 ], [ 59.941406, 7.841615 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82852ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.567383, 3.645000 ], [ 62.709961, 2.811371 ], [ 62.402344, 1.362176 ], [ 60.908203, 0.834931 ], [ 59.765625, 1.669686 ], [ 60.073242, 3.074695 ], [ 61.567383, 3.645000 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.325195, 5.528511 ], [ 64.511719, 4.696879 ], [ 64.204102, 3.337954 ], [ 62.709961, 2.811371 ], [ 61.567383, 3.645000 ], [ 61.875000, 5.003394 ], [ 63.325195, 5.528511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.731445, 7.580328 ], [ 65.917969, 6.795535 ], [ 65.961914, 5.222247 ], [ 64.511719, 4.696879 ], [ 63.325195, 5.528511 ], [ 63.632812, 6.839170 ], [ 64.731445, 7.580328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82628ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 6.009459 ], [ 59.282227, 5.266008 ], [ 58.974609, 3.908099 ], [ 57.524414, 3.381824 ], [ 56.425781, 4.171115 ], [ 56.777344, 5.484768 ], [ 58.227539, 6.009459 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82621ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.194336, 9.752370 ], [ 60.292969, 9.058702 ], [ 59.941406, 7.841615 ], [ 58.535156, 7.318882 ], [ 57.480469, 8.015716 ], [ 57.832031, 9.275622 ], [ 59.194336, 9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.974609, 3.908099 ], [ 60.073242, 3.074695 ], [ 59.765625, 1.669686 ], [ 58.271484, 1.142502 ], [ 57.172852, 1.977147 ], [ 57.524414, 3.381824 ], [ 58.974609, 3.908099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82604ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.874023, 9.925566 ], [ 67.104492, 9.145486 ], [ 67.104492, 7.580328 ], [ 65.917969, 6.795535 ], [ 64.731445, 7.580328 ], [ 64.687500, 9.145486 ], [ 65.874023, 9.925566 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8262effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.544922, 9.882275 ], [ 64.687500, 9.145486 ], [ 64.731445, 7.580328 ], [ 63.632812, 6.839170 ], [ 62.490234, 7.580328 ], [ 62.446289, 9.102097 ], [ 63.544922, 9.882275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.204102, 3.337954 ], [ 65.434570, 2.504085 ], [ 65.126953, 1.054628 ], [ 63.632812, 0.483393 ], [ 62.402344, 1.362176 ], [ 62.709961, 2.811371 ], [ 64.204102, 3.337954 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.961914, 5.222247 ], [ 67.192383, 4.434044 ], [ 66.928711, 3.030812 ], [ 65.434570, 2.504085 ], [ 64.204102, 3.337954 ], [ 64.511719, 4.696879 ], [ 65.961914, 5.222247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 27.332735 ], [ 79.453125, 26.667096 ], [ 79.541016, 25.085599 ], [ 78.002930, 24.206890 ], [ 76.333008, 24.846565 ], [ 76.201172, 26.431228 ], [ 77.783203, 27.332735 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.013672, 34.957995 ], [ 80.903320, 34.198173 ], [ 80.947266, 32.509762 ], [ 79.233398, 31.578535 ], [ 77.387695, 32.287133 ], [ 77.255859, 34.016242 ], [ 79.013672, 34.957995 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82426ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.630859, 34.379713 ], [ 73.608398, 33.687782 ], [ 73.828125, 31.989442 ], [ 72.202148, 30.977609 ], [ 70.312500, 31.615966 ], [ 69.960938, 33.284620 ], [ 71.630859, 34.379713 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823daffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.277344, 29.916852 ], [ 81.035156, 29.190533 ], [ 81.079102, 27.566721 ], [ 79.453125, 26.667096 ], [ 77.783203, 27.332735 ], [ 77.651367, 28.960089 ], [ 79.277344, 29.916852 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.947266, 32.509762 ], [ 82.705078, 31.728167 ], [ 82.705078, 30.069094 ], [ 81.035156, 29.190533 ], [ 79.277344, 29.916852 ], [ 79.233398, 31.578535 ], [ 80.947266, 32.509762 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.257812, 36.738884 ], [ 71.323242, 36.102376 ], [ 71.630859, 34.379713 ], [ 69.960938, 33.284620 ], [ 67.983398, 33.906896 ], [ 67.587891, 35.603719 ], [ 69.257812, 36.738884 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.462891, 32.583849 ], [ 86.176758, 31.765537 ], [ 86.088867, 30.107118 ], [ 84.375000, 29.305561 ], [ 82.705078, 30.069094 ], [ 82.705078, 31.728167 ], [ 84.462891, 32.583849 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82209ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.081055, 37.160317 ], [ 75.102539, 36.456636 ], [ 75.322266, 34.741612 ], [ 73.608398, 33.687782 ], [ 71.630859, 34.379713 ], [ 71.323242, 36.102376 ], [ 73.081055, 37.160317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82424ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.828125, 31.989442 ], [ 75.673828, 31.316101 ], [ 75.849609, 29.649869 ], [ 74.267578, 28.690588 ], [ 72.465820, 29.343875 ], [ 72.202148, 30.977609 ], [ 73.828125, 31.989442 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.352539, 35.137879 ], [ 88.110352, 34.270836 ], [ 87.978516, 32.583849 ], [ 86.176758, 31.765537 ], [ 84.462891, 32.583849 ], [ 84.550781, 34.270836 ], [ 86.352539, 35.137879 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.387695, 32.287133 ], [ 79.233398, 31.578535 ], [ 79.277344, 29.916852 ], [ 77.651367, 28.960089 ], [ 75.849609, 29.649869 ], [ 75.673828, 31.316101 ], [ 77.387695, 32.287133 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.978516, 32.583849 ], [ 89.560547, 31.728167 ], [ 89.428711, 30.107118 ], [ 87.714844, 29.305561 ], [ 86.088867, 30.107118 ], [ 86.176758, 31.765537 ], [ 87.978516, 32.583849 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 39.605688 ], [ 72.817383, 38.925229 ], [ 73.081055, 37.160317 ], [ 71.323242, 36.102376 ], [ 69.257812, 36.738884 ], [ 68.862305, 38.479395 ], [ 70.664062, 39.605688 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 40.245992 ], [ 80.771484, 39.436193 ], [ 80.815430, 37.649034 ], [ 78.925781, 36.703660 ], [ 76.948242, 37.474858 ], [ 76.772461, 39.232253 ], [ 78.706055, 40.245992 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82208ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.663086, 39.977120 ], [ 76.772461, 39.232253 ], [ 76.948242, 37.474858 ], [ 75.102539, 36.456636 ], [ 73.081055, 37.160317 ], [ 72.817383, 38.925229 ], [ 74.663086, 39.977120 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.705078, 35.101934 ], [ 84.550781, 34.270836 ], [ 84.462891, 32.583849 ], [ 82.705078, 31.728167 ], [ 80.947266, 32.509762 ], [ 80.903320, 34.198173 ], [ 82.705078, 35.101934 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.322266, 34.741612 ], [ 77.255859, 34.016242 ], [ 77.387695, 32.287133 ], [ 75.673828, 31.316101 ], [ 73.828125, 31.989442 ], [ 73.608398, 33.687782 ], [ 75.322266, 34.741612 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.948242, 37.474858 ], [ 78.925781, 36.703660 ], [ 79.013672, 34.957995 ], [ 77.255859, 34.016242 ], [ 75.322266, 34.741612 ], [ 75.102539, 36.456636 ], [ 76.948242, 37.474858 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823db7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.443359, 27.059126 ], [ 76.201172, 26.431228 ], [ 76.333008, 24.846565 ], [ 74.838867, 23.926013 ], [ 73.168945, 24.527135 ], [ 72.949219, 26.115986 ], [ 74.443359, 27.059126 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.191406, 26.706360 ], [ 72.949219, 26.115986 ], [ 73.168945, 24.527135 ], [ 71.718750, 23.604262 ], [ 70.004883, 24.166802 ], [ 69.697266, 25.720735 ], [ 71.191406, 26.706360 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824247fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 31.615966 ], [ 72.202148, 30.977609 ], [ 72.465820, 29.343875 ], [ 70.883789, 28.304381 ], [ 69.082031, 28.921631 ], [ 68.730469, 30.562261 ], [ 70.312500, 31.615966 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823da7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.849609, 29.649869 ], [ 77.651367, 28.960089 ], [ 77.783203, 27.332735 ], [ 76.201172, 26.431228 ], [ 74.443359, 27.059126 ], [ 74.267578, 28.690588 ], [ 75.849609, 29.649869 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824257fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 28.921631 ], [ 70.883789, 28.304381 ], [ 71.191406, 26.706360 ], [ 69.697266, 25.720735 ], [ 67.939453, 26.273714 ], [ 67.587891, 27.877928 ], [ 69.082031, 28.921631 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82425ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.465820, 29.343875 ], [ 74.267578, 28.690588 ], [ 74.443359, 27.059126 ], [ 72.949219, 26.115986 ], [ 71.191406, 26.706360 ], [ 70.883789, 28.304381 ], [ 72.465820, 29.343875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.638672, 37.718590 ], [ 86.484375, 36.844461 ], [ 86.352539, 35.137879 ], [ 84.550781, 34.270836 ], [ 82.705078, 35.101934 ], [ 82.749023, 36.844461 ], [ 84.638672, 37.718590 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8220dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.749023, 40.346544 ], [ 84.682617, 39.470125 ], [ 84.638672, 37.718590 ], [ 82.749023, 36.844461 ], [ 80.815430, 37.649034 ], [ 80.771484, 39.436193 ], [ 82.749023, 40.346544 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 37.649034 ], [ 82.749023, 36.844461 ], [ 82.705078, 35.101934 ], [ 80.903320, 34.198173 ], [ 79.013672, 34.957995 ], [ 78.925781, 36.703660 ], [ 80.815430, 37.649034 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.704102, 40.313043 ], [ 88.593750, 39.368279 ], [ 88.417969, 37.649034 ], [ 86.484375, 36.844461 ], [ 84.638672, 37.718590 ], [ 84.682617, 39.470125 ], [ 86.704102, 40.313043 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.583008, 27.722436 ], [ 89.208984, 26.863281 ], [ 89.077148, 25.244696 ], [ 87.407227, 24.407138 ], [ 85.825195, 25.244696 ], [ 85.913086, 26.902477 ], [ 87.583008, 27.722436 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.088867, 30.107118 ], [ 87.714844, 29.305561 ], [ 87.583008, 27.722436 ], [ 85.913086, 26.902477 ], [ 84.331055, 27.683528 ], [ 84.375000, 29.305561 ], [ 86.088867, 30.107118 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.705078, 30.069094 ], [ 84.375000, 29.305561 ], [ 84.331055, 27.683528 ], [ 82.705078, 26.824071 ], [ 81.079102, 27.566721 ], [ 81.035156, 29.190533 ], [ 82.705078, 30.069094 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.331055, 27.683528 ], [ 85.913086, 26.902477 ], [ 85.825195, 25.244696 ], [ 84.199219, 24.407138 ], [ 82.661133, 25.204941 ], [ 82.705078, 26.824071 ], [ 84.331055, 27.683528 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823d8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.079102, 27.566721 ], [ 82.705078, 26.824071 ], [ 82.661133, 25.204941 ], [ 81.035156, 24.327077 ], [ 79.541016, 25.085599 ], [ 79.453125, 26.667096 ], [ 81.079102, 27.566721 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 12.468760 ], [ 79.189453, 11.566144 ], [ 79.189453, 9.838979 ], [ 77.695312, 9.015302 ], [ 76.289062, 9.925566 ], [ 76.333008, 11.609193 ], [ 77.783203, 12.468760 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82612ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.057617, 4.696879 ], [ 80.463867, 3.732708 ], [ 80.419922, 2.021065 ], [ 78.969727, 1.274309 ], [ 77.607422, 2.240640 ], [ 77.607422, 3.908099 ], [ 79.057617, 4.696879 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82600ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.202148, 12.425848 ], [ 73.520508, 11.609193 ], [ 73.520508, 9.925566 ], [ 72.202148, 9.145486 ], [ 70.883789, 9.968851 ], [ 70.839844, 11.609193 ], [ 72.202148, 12.425848 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, 17.224758 ], [ 70.839844, 16.467695 ], [ 70.839844, 14.859850 ], [ 69.521484, 14.008696 ], [ 68.247070, 14.732386 ], [ 68.203125, 16.341226 ], [ 69.521484, 17.224758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82601ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.564453, 14.944785 ], [ 74.926758, 14.136576 ], [ 74.926758, 12.468760 ], [ 73.520508, 11.609193 ], [ 72.202148, 12.425848 ], [ 72.202148, 14.093957 ], [ 73.564453, 14.944785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8242d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, 21.698265 ], [ 70.532227, 21.166484 ], [ 70.795898, 19.725342 ], [ 69.477539, 18.812718 ], [ 67.895508, 19.311143 ], [ 67.587891, 20.756114 ], [ 68.906250, 21.698265 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82645ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.791992, 12.254128 ], [ 88.330078, 11.264612 ], [ 88.242188, 9.492408 ], [ 86.660156, 8.667918 ], [ 85.166016, 9.622414 ], [ 85.209961, 11.393879 ], [ 86.791992, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82610ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.695312, 7.318882 ], [ 79.101562, 6.402648 ], [ 79.057617, 4.696879 ], [ 77.607422, 3.908099 ], [ 76.245117, 4.828260 ], [ 76.245117, 6.489983 ], [ 77.695312, 7.318882 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8261a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.715820, 12.340002 ], [ 85.209961, 11.393879 ], [ 85.166016, 9.622414 ], [ 83.583984, 8.841651 ], [ 82.133789, 9.752370 ], [ 82.177734, 11.523088 ], [ 83.715820, 12.340002 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.409180, 20.138470 ], [ 80.903320, 19.311143 ], [ 80.859375, 17.602139 ], [ 79.321289, 16.720385 ], [ 77.871094, 17.560247 ], [ 77.871094, 19.269665 ], [ 79.409180, 20.138470 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8261affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.727539, 12.425848 ], [ 82.177734, 11.523088 ], [ 82.133789, 9.752370 ], [ 80.595703, 8.928487 ], [ 79.189453, 9.838979 ], [ 79.189453, 11.566144 ], [ 80.727539, 12.425848 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.926758, 12.468760 ], [ 76.333008, 11.609193 ], [ 76.289062, 9.925566 ], [ 74.882812, 9.102097 ], [ 73.520508, 9.925566 ], [ 73.520508, 11.609193 ], [ 74.926758, 12.468760 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 17.560247 ], [ 79.321289, 16.720385 ], [ 79.277344, 15.029686 ], [ 77.783203, 14.179186 ], [ 76.376953, 14.987240 ], [ 76.376953, 16.678293 ], [ 77.871094, 17.560247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 17.476432 ], [ 76.376953, 16.678293 ], [ 76.376953, 14.987240 ], [ 74.926758, 14.136576 ], [ 73.564453, 14.944785 ], [ 73.564453, 16.594081 ], [ 74.970703, 17.476432 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.202148, 17.350638 ], [ 73.564453, 16.594081 ], [ 73.564453, 14.944785 ], [ 72.202148, 14.093957 ], [ 70.839844, 14.859850 ], [ 70.839844, 16.467695 ], [ 72.202148, 17.350638 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82611ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.189453, 9.838979 ], [ 80.595703, 8.928487 ], [ 80.551758, 7.188101 ], [ 79.101562, 6.402648 ], [ 77.695312, 7.318882 ], [ 77.695312, 9.015302 ], [ 79.189453, 9.838979 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82608ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.564453, 19.890723 ], [ 74.970703, 19.145168 ], [ 74.970703, 17.476432 ], [ 73.564453, 16.594081 ], [ 72.202148, 17.350638 ], [ 72.158203, 18.979026 ], [ 73.564453, 19.890723 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826057fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, 12.382928 ], [ 70.839844, 11.609193 ], [ 70.883789, 9.968851 ], [ 69.565430, 9.145486 ], [ 68.334961, 9.968851 ], [ 68.291016, 11.566144 ], [ 69.565430, 12.382928 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82618ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.277344, 15.029686 ], [ 80.771484, 14.136576 ], [ 80.727539, 12.425848 ], [ 79.189453, 11.566144 ], [ 77.783203, 12.468760 ], [ 77.783203, 14.179186 ], [ 79.277344, 15.029686 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 19.725342 ], [ 72.158203, 18.979026 ], [ 72.202148, 17.350638 ], [ 70.839844, 16.467695 ], [ 69.521484, 17.224758 ], [ 69.477539, 18.812718 ], [ 70.795898, 19.725342 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8260e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 14.859850 ], [ 72.202148, 14.093957 ], [ 72.202148, 12.425848 ], [ 70.839844, 11.609193 ], [ 69.565430, 12.382928 ], [ 69.521484, 14.008696 ], [ 70.839844, 14.859850 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.420898, 20.014645 ], [ 77.871094, 19.269665 ], [ 77.871094, 17.560247 ], [ 76.376953, 16.678293 ], [ 74.970703, 17.476432 ], [ 74.970703, 19.145168 ], [ 76.420898, 20.014645 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.376953, 14.987240 ], [ 77.783203, 14.179186 ], [ 77.783203, 12.468760 ], [ 76.333008, 11.609193 ], [ 74.926758, 12.468760 ], [ 74.926758, 14.136576 ], [ 76.376953, 14.987240 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82602ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.520508, 9.925566 ], [ 74.882812, 9.102097 ], [ 74.882812, 7.406048 ], [ 73.520508, 6.620957 ], [ 72.202148, 7.493196 ], [ 72.202148, 9.145486 ], [ 73.520508, 9.925566 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826077fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.883789, 9.968851 ], [ 72.202148, 9.145486 ], [ 72.202148, 7.493196 ], [ 70.883789, 6.708254 ], [ 69.609375, 7.536764 ], [ 69.565430, 9.145486 ], [ 70.883789, 9.968851 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.520508, 4.959615 ], [ 74.882812, 4.039618 ], [ 74.838867, 2.416276 ], [ 73.520508, 1.669686 ], [ 72.202148, 2.547988 ], [ 72.202148, 4.171115 ], [ 73.520508, 4.959615 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82615ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.202148, 7.493196 ], [ 73.520508, 6.620957 ], [ 73.520508, 4.959615 ], [ 72.202148, 4.171115 ], [ 70.883789, 5.047171 ], [ 70.883789, 6.708254 ], [ 72.202148, 7.493196 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826067fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 7.536764 ], [ 70.883789, 6.708254 ], [ 70.883789, 5.047171 ], [ 69.653320, 4.302591 ], [ 68.378906, 5.178482 ], [ 68.378906, 6.751896 ], [ 69.609375, 7.536764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.882812, 7.406048 ], [ 76.245117, 6.489983 ], [ 76.245117, 4.828260 ], [ 74.882812, 4.039618 ], [ 73.520508, 4.959615 ], [ 73.520508, 6.620957 ], [ 74.882812, 7.406048 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82614ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.883789, 5.047171 ], [ 72.202148, 4.171115 ], [ 72.202148, 2.547988 ], [ 70.927734, 1.845384 ], [ 69.653320, 2.723583 ], [ 69.653320, 4.302591 ], [ 70.883789, 5.047171 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.289062, 9.925566 ], [ 77.695312, 9.015302 ], [ 77.695312, 7.318882 ], [ 76.245117, 6.489983 ], [ 74.882812, 7.406048 ], [ 74.882812, 9.102097 ], [ 76.289062, 9.925566 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.245117, 4.828260 ], [ 77.607422, 3.908099 ], [ 77.607422, 2.240640 ], [ 76.201172, 1.493971 ], [ 74.838867, 2.416276 ], [ 74.882812, 4.039618 ], [ 76.245117, 4.828260 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82619ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 17.602139 ], [ 82.353516, 16.720385 ], [ 82.309570, 14.987240 ], [ 80.771484, 14.136576 ], [ 79.277344, 15.029686 ], [ 79.321289, 16.720385 ], [ 80.859375, 17.602139 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.935547, 17.602139 ], [ 85.429688, 16.720385 ], [ 85.385742, 14.944785 ], [ 83.803711, 14.093957 ], [ 82.309570, 14.987240 ], [ 82.353516, 16.720385 ], [ 83.935547, 17.602139 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.605469, 20.179724 ], [ 87.143555, 19.269665 ], [ 87.055664, 17.560247 ], [ 85.429688, 16.720385 ], [ 83.935547, 17.602139 ], [ 83.979492, 19.311143 ], [ 85.605469, 20.179724 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.055664, 17.560247 ], [ 88.593750, 16.594081 ], [ 88.505859, 14.859850 ], [ 86.879883, 14.008696 ], [ 85.385742, 14.944785 ], [ 85.429688, 16.720385 ], [ 87.055664, 17.560247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8261b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.385742, 14.944785 ], [ 86.879883, 14.008696 ], [ 86.791992, 12.254128 ], [ 85.209961, 11.393879 ], [ 83.715820, 12.340002 ], [ 83.803711, 14.093957 ], [ 85.385742, 14.944785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.485352, 20.179724 ], [ 83.979492, 19.311143 ], [ 83.935547, 17.602139 ], [ 82.353516, 16.720385 ], [ 80.859375, 17.602139 ], [ 80.903320, 19.311143 ], [ 82.485352, 20.179724 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826187fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 14.987240 ], [ 83.803711, 14.093957 ], [ 83.715820, 12.340002 ], [ 82.177734, 11.523088 ], [ 80.727539, 12.425848 ], [ 80.771484, 14.136576 ], [ 82.309570, 14.987240 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82869ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.946289, 4.346411 ], [ 86.396484, 3.381824 ], [ 86.308594, 1.625758 ], [ 84.770508, 0.878872 ], [ 83.364258, 1.845384 ], [ 83.408203, 3.557283 ], [ 84.946289, 4.346411 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82644ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.166016, 9.622414 ], [ 86.660156, 8.667918 ], [ 86.572266, 6.926427 ], [ 84.990234, 6.096860 ], [ 83.540039, 7.057282 ], [ 83.583984, 8.841651 ], [ 85.166016, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82646ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.572266, 6.926427 ], [ 88.066406, 5.922045 ], [ 87.978516, 4.171115 ], [ 86.396484, 3.381824 ], [ 84.946289, 4.346411 ], [ 84.990234, 6.096860 ], [ 86.572266, 6.926427 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.133789, 9.752370 ], [ 83.583984, 8.841651 ], [ 83.540039, 7.057282 ], [ 82.001953, 6.271618 ], [ 80.551758, 7.188101 ], [ 80.595703, 8.928487 ], [ 82.133789, 9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.540039, 7.057282 ], [ 84.990234, 6.096860 ], [ 84.946289, 4.346411 ], [ 83.408203, 3.557283 ], [ 81.958008, 4.521666 ], [ 82.001953, 6.271618 ], [ 83.540039, 7.057282 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.551758, 7.188101 ], [ 82.001953, 6.271618 ], [ 81.958008, 4.521666 ], [ 80.463867, 3.732708 ], [ 79.057617, 4.696879 ], [ 79.101562, 6.402648 ], [ 80.551758, 7.188101 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.958008, 4.521666 ], [ 83.408203, 3.557283 ], [ 83.364258, 1.845384 ], [ 81.870117, 1.098565 ], [ 80.419922, 2.021065 ], [ 80.463867, 3.732708 ], [ 81.958008, 4.521666 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.242188, 9.492408 ], [ 89.736328, 8.494105 ], [ 89.648438, 6.708254 ], [ 88.066406, 5.922045 ], [ 86.572266, 6.926427 ], [ 86.660156, 8.667918 ], [ 88.242188, 9.492408 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828697fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.978516, 4.171115 ], [ 89.428711, 3.162456 ], [ 89.340820, 1.406109 ], [ 87.802734, 0.659165 ], [ 86.308594, 1.625758 ], [ 86.396484, 3.381824 ], [ 87.978516, 4.171115 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 18173, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 18173, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:max:GDP_MD": 18173, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 102.533912, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 102.533912, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:max:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_Y": 19.431821, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 19.431821, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:max:LABEL_Y": 19.431821, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:sum:NE_ID": 1159321011, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321011, "tippecanoe:min:NE_ID": 1159321011, "tippecanoe:max:NE_ID": 1159321011, "tippecanoe:sum:POP_EST": 7169455, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 7169455, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:max:POP_EST": 7169455, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424872, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424872, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:max:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID_EH": 23424872, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424872, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:max:WOE_ID_EH": 23424872, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 3, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3488562, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 1162854, "tippecanoe:min:GDP_MD": 76085, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 2.6666666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 276.2358, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 92.0786, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:max:LABEL_X": 101.073198, "tippecanoe:sum:LABEL_Y": 59.72044699999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 19.906815666666664, "tippecanoe:min:LABEL_Y": 15.45974, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 6.666666666666667, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 7.4, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 2.466666666666667, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 3477963219, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:sum:POP_EST": 1490088756, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 496696252, "tippecanoe:min:POP_EST": 54045420, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:sum:POP_RANK": 50, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 16.666666666666669, "tippecanoe:min:POP_RANK": 16, "tippecanoe:max:POP_RANK": 18, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274571, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424857, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:sum:WOE_ID_EH": 70274571, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424857, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "82052ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.564453, 83.153111 ], [ 123.837891, 81.531225 ], [ 117.290039, 80.080785 ], [ 107.094727, 79.997168 ], [ 100.063477, 81.334844 ], [ 103.930664, 83.031552 ], [ 118.564453, 83.153111 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82050ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.837891, 81.531225 ], [ 135.307617, 81.086407 ], [ 136.933594, 79.318942 ], [ 130.034180, 78.125454 ], [ 121.376953, 78.464217 ], [ 117.290039, 80.080785 ], [ 123.837891, 81.531225 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "82042ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.808594, 79.318942 ], [ 160.708008, 78.116408 ], [ 158.730469, 76.372619 ], [ 151.699219, 75.748125 ], [ 145.371094, 76.730314 ], [ 145.371094, 78.534311 ], [ 153.808594, 79.318942 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.290039, 80.080785 ], [ 121.376953, 78.464217 ], [ 116.630859, 76.980149 ], [ 108.808594, 76.930555 ], [ 103.754883, 78.331648 ], [ 107.094727, 79.997168 ], [ 117.290039, 80.080785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.011719, 76.382969 ], [ 138.999023, 75.748125 ], [ 139.702148, 73.946791 ], [ 134.692383, 72.842021 ], [ 128.803711, 73.378215 ], [ 126.870117, 75.095633 ], [ 132.011719, 76.382969 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.023438, 84.541361 ], [ 145.415039, 83.881684 ], [ 145.415039, 82.112355 ], [ 135.307617, 81.086407 ], [ 123.837891, 81.531225 ], [ 118.564453, 83.153111 ], [ 129.023438, 84.541361 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82055ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.904297, 81.524751 ], [ 173.452148, 80.065634 ], [ 169.365234, 78.455425 ], [ 160.708008, 78.116408 ], [ 153.808594, 79.318942 ], [ 155.478516, 81.086407 ], [ 166.904297, 81.524751 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.415039, 82.112355 ], [ 155.478516, 81.086407 ], [ 153.808594, 79.318942 ], [ 145.371094, 78.534311 ], [ 136.933594, 79.318942 ], [ 135.307617, 81.086407 ], [ 145.415039, 82.112355 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82058ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 23, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 5.75, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 335757, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 83939.25, "tippecanoe:min:GDP_MD": 15, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 340.494724, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 85.123681, "tippecanoe:min:LABEL_X": 77.129553, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:sum:LABEL_Y": 115.390172, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 28.847543, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:sum:MAPCOLOR13": -72, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": -18, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 4.75, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 4.25, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 34.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 16.5, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 4.125, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 36, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:sum:NE_ID": 4637282944, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320736, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:sum:POP_EST": 192423963, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 48105990.75, "tippecanoe:min:POP_EST": 6000, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:sum:POP_RANK": 48, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 8070, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 93699368, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424842, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:sum:WOE_ID_EH": 93699368, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424842, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8205affffffffff", "felt:h3_level": 2, "tippecanoe:count": 7, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 413360, "tippecanoe:count:GDP_MD": 7, "tippecanoe:mean:GDP_MD": 59051.42857142857, "tippecanoe:min:GDP_MD": 596, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:sum:GDP_YEAR": 14126, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:HOMEPART": 7, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:LABELRANK": 7, "tippecanoe:mean:LABELRANK": 3.5714285714285718, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 468.22810400000005, "tippecanoe:count:LABEL_X": 7, "tippecanoe:mean:LABEL_X": 66.88972914285715, "tippecanoe:min:LABEL_X": 58.676647, "tippecanoe:max:LABEL_X": 74.532637, "tippecanoe:sum:LABEL_Y": 270.888207, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:mean:LABEL_Y": 38.69831528571429, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:max:LABEL_Y": 45.978332, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:LEVEL": 7, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 80, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:mean:LONG_LEN": 11.428571428571429, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:mean:MAPCOLOR13": 6.142857142857143, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 26, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR7": 3.7142857142857146, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR8": 3.857142857142857, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 32, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR9": 4.571428571428571, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 56.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:mean:MAX_LABEL": 8.071428571428572, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 24.7, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:mean:MIN_LABEL": 3.5285714285714286, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:mean:MIN_ZOOM": 0.7142857142857143, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:mean:NAME_LEN": 9.857142857142858, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 8115247435, "tippecanoe:count:NE_ID": 7, "tippecanoe:mean:NE_ID": 1159321062.142857, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:sum:POP_EST": 309943904, "tippecanoe:count:POP_EST": 7, "tippecanoe:mean:POP_EST": 44277700.571428578, "tippecanoe:min:POP_EST": 36175, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:sum:POP_RANK": 93, "tippecanoe:count:POP_RANK": 7, "tippecanoe:mean:POP_RANK": 13.285714285714287, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 14123, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:mean:POP_YEAR": 2017.5714285714287, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -589, "tippecanoe:count:TINY": 7, "tippecanoe:mean:TINY": -84.14285714285714, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 140549348, "tippecanoe:count:WOE_ID": 7, "tippecanoe:mean:WOE_ID": 20078478.285714289, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:sum:WOE_ID_EH": 160619615, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:mean:WOE_ID_EH": 22945659.285714289, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:min:POP_EST": 973560, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -396, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 18, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_MD": 18, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:min:GDP_MD": 280, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:HOMEPART": 18, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:LABELRANK": 18, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_X": 18, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:LEVEL": 18, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:count:NE_ID": 18, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_EST": 18, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:min:POP_EST": 7850, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_RANK": 18, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:TINY": 18, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID": 18, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:scalerank": 18, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 8, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_MD": 8, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:HOMEPART": 8, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:LABELRANK": 8, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_X": 8, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:LEVEL": 8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:count:NE_ID": 8, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_EST": 8, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_RANK": 8, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -691, "tippecanoe:count:TINY": 8, "tippecanoe:mean:TINY": -86.375, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID": 8, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 8, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 14, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6218276, "tippecanoe:count:GDP_MD": 14, "tippecanoe:mean:GDP_MD": 444162.5714285714, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:HOMEPART": 14, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 64, "tippecanoe:count:LABELRANK": 14, "tippecanoe:mean:LABELRANK": 4.571428571428571, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 283.356465, "tippecanoe:count:LABEL_X": 14, "tippecanoe:mean:LABEL_X": 20.2397475, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:sum:LABEL_Y": 730.183153, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:mean:LABEL_Y": 52.155939499999998, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:LEVEL": 14, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 112, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 41, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:mean:MAPCOLOR7": 2.9285714285714286, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 48, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:mean:MAPCOLOR8": 3.4285714285714286, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:mean:MAPCOLOR9": 3.2142857142857146, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 118.7, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:mean:MAX_LABEL": 8.47857142857143, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 49.2, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:mean:MIN_LABEL": 3.5142857142857149, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 97, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:mean:NAME_LEN": 6.928571428571429, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 16230491272, "tippecanoe:count:NE_ID": 14, "tippecanoe:mean:NE_ID": 1159320805.142857, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:sum:POP_EST": 199230168, "tippecanoe:count:POP_EST": 14, "tippecanoe:mean:POP_EST": 14230726.285714286, "tippecanoe:min:POP_EST": 29884, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_RANK": 14, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:TINY": 14, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 317100831, "tippecanoe:count:WOE_ID": 14, "tippecanoe:mean:WOE_ID": 22650059.35714286, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:sum:WOE_ID_EH": 317100831, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:mean:WOE_ID_EH": 22650059.35714286, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 14, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.754883, 78.331648 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 103.754883, 78.331648 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:min:POP_EST": 502653, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -294, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -73.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.128906, 67.407487 ], [ 97.866211, 67.050304 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82051ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.376953, 78.464217 ], [ 130.034180, 78.125454 ], [ 132.011719, 76.382969 ], [ 126.870117, 75.095633 ], [ 119.926758, 75.375605 ], [ 116.630859, 76.980149 ], [ 121.376953, 78.464217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.806641, 84.532994 ], [ 172.221680, 83.142625 ], [ 166.904297, 81.524751 ], [ 155.478516, 81.086407 ], [ 145.415039, 82.112355 ], [ 145.415039, 83.881684 ], [ 161.806641, 84.532994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.371094, 76.730314 ], [ 151.699219, 75.748125 ], [ 150.996094, 73.946791 ], [ 145.371094, 73.124945 ], [ 139.702148, 73.946791 ], [ 138.999023, 75.748125 ], [ 145.371094, 76.730314 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.995117, 71.074056 ], [ 159.038086, 69.900118 ], [ 157.939453, 68.155209 ], [ 153.457031, 67.542167 ], [ 149.589844, 68.576441 ], [ 149.985352, 70.363091 ], [ 154.995117, 71.074056 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.894531, 73.365639 ], [ 165.937500, 72.033289 ], [ 164.135742, 70.348318 ], [ 159.038086, 69.900118 ], [ 154.995117, 71.074056 ], [ 156.005859, 72.842021 ], [ 161.894531, 73.365639 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82040ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 40000, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 40000, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:max:GDP_MD": 40000, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 126.444516, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 126.444516, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:max:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_Y": 39.885252, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 39.885252, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 1159321181, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159321181, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:sum:POP_EST": 25666161, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 25666161, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:max:POP_EST": 25666161, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424865, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424865, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:max:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID_EH": 23424865, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424865, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:max:WOE_ID_EH": 23424865, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.771484, 75.364506 ], [ 174.462891, 73.873717 ], [ 171.694336, 72.275693 ], [ 165.937500, 72.033289 ], [ 161.894531, 73.365639 ], [ 163.828125, 75.084326 ], [ 170.771484, 75.364506 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82041ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 2773739, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 1386869.5, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 248.997708, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 124.498854, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:sum:LABEL_Y": 60.037332, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 30.018666, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:max:LABEL_Y": 36.384924, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 11.5, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 2318642320, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321160, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:sum:POP_EST": 75277476, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 37638738, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849839, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424919.5, "tippecanoe:min:WOE_ID": 23424868, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:sum:WOE_ID_EH": 46849839, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424919.5, "tippecanoe:min:WOE_ID_EH": 23424868, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.996094, 73.946791 ], [ 156.005859, 72.842021 ], [ 154.995117, 71.074056 ], [ 149.985352, 70.363091 ], [ 145.327148, 71.328950 ], [ 145.371094, 73.124945 ], [ 150.996094, 73.946791 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204affffffffff", "felt:h3_level": 2, "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 14, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 654721, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 218240.33333333335, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 323.98993099999998, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 107.99664366666666, "tippecanoe:min:LABEL_X": 104.50487, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:sum:LABEL_Y": 56.811829, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": 18.937276333333334, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 3477962869, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320956.3333333, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:sum:POP_EST": 120456048, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 40152016, "tippecanoe:min:POP_EST": 7507400, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -196, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 71715458, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23905152.666666669, "tippecanoe:min:WOE_ID": 23424776, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:sum:WOE_ID_EH": 71715458, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23905152.666666669, "tippecanoe:min:WOE_ID_EH": 23424776, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 71.328950 ], [ 149.985352, 70.363091 ], [ 149.589844, 68.576441 ], [ 145.327148, 67.742759 ], [ 141.064453, 68.576441 ], [ 140.712891, 70.363091 ], [ 145.327148, 71.328950 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.365234, 78.455425 ], [ 174.067383, 76.970245 ], [ 170.771484, 75.364506 ], [ 163.828125, 75.084326 ], [ 158.730469, 76.372619 ], [ 160.708008, 78.116408 ], [ 169.365234, 78.455425 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.694336, 72.275693 ], [ 174.770508, 70.801366 ], [ 172.353516, 69.209404 ], [ 167.431641, 69.005675 ], [ 164.135742, 70.348318 ], [ 165.937500, 72.033289 ], [ 171.694336, 72.275693 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8204c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:min:POP_EST": 57216, "tippecanoe:max:POP_EST": 167294, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 5, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": 2.5, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "8232cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 44.402392 ], [ 162.421875, 43.133061 ], [ 161.718750, 41.442726 ], [ 159.433594, 40.979898 ], [ 157.807617, 42.195969 ], [ 158.378906, 43.897892 ], [ 160.751953, 44.402392 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8215a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.456055, 53.644638 ], [ 115.224609, 53.566414 ], [ 116.499023, 52.214339 ], [ 115.136719, 51.013755 ], [ 112.631836, 51.096623 ], [ 111.225586, 52.375599 ], [ 112.456055, 53.644638 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820aaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 62.674143 ], [ 101.250000, 61.438767 ], [ 100.327148, 59.933000 ], [ 97.294922, 59.534318 ], [ 94.790039, 60.673179 ], [ 95.361328, 62.288365 ], [ 98.789062, 62.674143 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8215b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.631836, 51.096623 ], [ 115.136719, 51.013755 ], [ 116.323242, 49.696062 ], [ 115.092773, 48.545705 ], [ 112.983398, 48.341646 ], [ 111.708984, 49.610710 ], [ 112.631836, 51.096623 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.327148, 59.933000 ], [ 102.524414, 58.722599 ], [ 101.733398, 57.136239 ], [ 98.920898, 56.728622 ], [ 96.679688, 57.914848 ], [ 97.294922, 59.534318 ], [ 100.327148, 59.933000 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820af7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 39780, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 19890, "tippecanoe:min:GDP_MD": 18340, "tippecanoe:max:GDP_MD": 21440, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 54.104659999999999, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 27.052329999999999, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:max:LABEL_X": 29.925444, "tippecanoe:sum:LABEL_Y": -41.014274, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -20.507137, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:max:LABEL_Y": -18.91164, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 6.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318641902, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320951, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:sum:POP_EST": 16949165, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 8474582.5, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:max:POP_EST": 14645468, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849759, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424879.5, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:sum:WOE_ID_EH": 46849759, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424879.5, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "8214d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.274414, 50.792047 ], [ 138.647461, 50.176898 ], [ 138.955078, 48.719961 ], [ 137.021484, 47.872144 ], [ 134.780273, 48.429201 ], [ 134.296875, 49.866317 ], [ 136.274414, 50.792047 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.280273, 56.292157 ], [ 115.268555, 56.243350 ], [ 116.674805, 54.826008 ], [ 115.224609, 53.566414 ], [ 112.456055, 53.644638 ], [ 110.961914, 54.977614 ], [ 112.280273, 56.292157 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 39.027719 ], [ 136.801758, 38.203655 ], [ 136.757812, 36.597889 ], [ 135.219727, 35.853440 ], [ 133.681641, 36.668419 ], [ 133.637695, 38.238180 ], [ 135.219727, 39.027719 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.549805, 41.409776 ], [ 135.175781, 40.647304 ], [ 135.219727, 39.027719 ], [ 133.637695, 38.238180 ], [ 132.099609, 38.993572 ], [ 132.011719, 40.580585 ], [ 133.549805, 41.409776 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.845703, 57.984808 ], [ 139.790039, 57.326521 ], [ 140.097656, 55.702355 ], [ 137.680664, 54.775346 ], [ 134.912109, 55.379110 ], [ 134.384766, 56.968936 ], [ 136.845703, 57.984808 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.110352, 60.217991 ], [ 136.362305, 59.623325 ], [ 136.845703, 57.984808 ], [ 134.384766, 56.968936 ], [ 131.396484, 57.492214 ], [ 130.605469, 59.108308 ], [ 133.110352, 60.217991 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.273438, 41.409776 ], [ 141.987305, 40.480381 ], [ 141.811523, 38.822591 ], [ 140.053711, 38.099983 ], [ 138.427734, 38.993572 ], [ 138.515625, 40.613952 ], [ 140.273438, 41.409776 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.733398, 57.136239 ], [ 103.710938, 55.899956 ], [ 102.963867, 54.316523 ], [ 100.371094, 53.904338 ], [ 98.349609, 55.103516 ], [ 98.920898, 56.728622 ], [ 101.733398, 57.136239 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82731ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.077148, 9.752370 ], [ 135.483398, 8.624472 ], [ 135.175781, 6.839170 ], [ 133.505859, 6.184246 ], [ 132.099609, 7.318882 ], [ 132.407227, 9.102097 ], [ 134.077148, 9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820497fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.812500, 65.784758 ], [ 141.679688, 65.053602 ], [ 141.943359, 63.312683 ], [ 138.735352, 62.329208 ], [ 135.219727, 62.995158 ], [ 134.516602, 64.699105 ], [ 137.812500, 65.784758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.681641, 36.668419 ], [ 135.219727, 35.853440 ], [ 135.219727, 34.234512 ], [ 133.769531, 33.504759 ], [ 132.319336, 34.343436 ], [ 132.231445, 35.889050 ], [ 133.681641, 36.668419 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.604492, 29.802518 ], [ 136.054688, 28.883160 ], [ 135.747070, 27.410786 ], [ 133.989258, 26.824071 ], [ 132.539062, 27.761330 ], [ 132.846680, 29.267233 ], [ 134.604492, 29.802518 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82154ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.517578, 65.256706 ], [ 134.516602, 64.699105 ], [ 135.219727, 62.995158 ], [ 132.363281, 61.876870 ], [ 128.759766, 62.369996 ], [ 127.617188, 64.014496 ], [ 130.517578, 65.256706 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.845703, 41.442726 ], [ 138.515625, 40.613952 ], [ 138.427734, 38.993572 ], [ 136.801758, 38.203655 ], [ 135.219727, 39.027719 ], [ 135.175781, 40.647304 ], [ 136.845703, 41.442726 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.922852, 20.055931 ], [ 137.329102, 18.979026 ], [ 137.021484, 17.308688 ], [ 135.307617, 16.678293 ], [ 133.901367, 17.769612 ], [ 134.165039, 19.435514 ], [ 135.922852, 20.055931 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.681641, 25.284438 ], [ 135.087891, 24.287027 ], [ 134.780273, 22.715390 ], [ 133.066406, 22.105999 ], [ 131.660156, 23.079732 ], [ 131.923828, 24.686952 ], [ 133.681641, 25.284438 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 15291, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 15291, "tippecanoe:min:GDP_MD": 15291, "tippecanoe:max:GDP_MD": 15291, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 37.83789, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 37.83789, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_Y": -13.94323, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -13.94323, "tippecanoe:min:LABEL_Y": -13.94323, "tippecanoe:max:LABEL_Y": -13.94323, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159321073, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159321073, "tippecanoe:max:NE_ID": 1159321073, "tippecanoe:sum:POP_EST": 30366036, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 30366036, "tippecanoe:min:POP_EST": 30366036, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424902, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424902, "tippecanoe:min:WOE_ID": 23424902, "tippecanoe:max:WOE_ID": 23424902, "tippecanoe:sum:WOE_ID_EH": 23424902, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424902, "tippecanoe:min:WOE_ID_EH": 23424902, "tippecanoe:max:WOE_ID_EH": 23424902, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "823147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.715820, 43.484812 ], [ 130.341797, 42.811522 ], [ 130.429688, 41.277806 ], [ 129.023438, 40.446947 ], [ 127.485352, 41.079351 ], [ 127.309570, 42.585444 ], [ 128.715820, 43.484812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.833008, 41.211722 ], [ 145.546875, 40.245992 ], [ 145.283203, 38.548165 ], [ 143.437500, 37.857507 ], [ 141.811523, 38.822591 ], [ 141.987305, 40.480381 ], [ 143.833008, 41.211722 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.845703, 24.886436 ], [ 138.295898, 23.845650 ], [ 137.944336, 22.268764 ], [ 136.230469, 21.698265 ], [ 134.780273, 22.715390 ], [ 135.087891, 24.287027 ], [ 136.845703, 24.886436 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 57.657158 ], [ 112.280273, 56.292157 ], [ 110.961914, 54.977614 ], [ 108.149414, 54.927142 ], [ 106.391602, 56.218923 ], [ 107.578125, 57.610107 ], [ 110.654297, 57.657158 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82152ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.840820, 61.876870 ], [ 115.444336, 61.835413 ], [ 117.114258, 60.348696 ], [ 115.356445, 58.995311 ], [ 112.060547, 59.040555 ], [ 110.258789, 60.435542 ], [ 111.840820, 61.876870 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.245117, 55.899956 ], [ 124.189453, 55.603178 ], [ 125.156250, 54.110943 ], [ 123.398438, 52.961875 ], [ 120.673828, 53.225768 ], [ 119.531250, 54.648413 ], [ 121.245117, 55.899956 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.912109, 55.379110 ], [ 137.680664, 54.775346 ], [ 138.032227, 53.225768 ], [ 135.878906, 52.268157 ], [ 133.286133, 52.829321 ], [ 132.714844, 54.367759 ], [ 134.912109, 55.379110 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 62.995158 ], [ 138.735352, 62.329208 ], [ 139.130859, 60.651647 ], [ 136.362305, 59.623325 ], [ 133.110352, 60.217991 ], [ 132.363281, 61.876870 ], [ 135.219727, 62.995158 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82245ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.500000, 44.182204 ], [ 113.642578, 43.004647 ], [ 112.851562, 41.541478 ], [ 110.961914, 41.211722 ], [ 109.819336, 42.358544 ], [ 110.522461, 43.866218 ], [ 112.500000, 44.182204 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.897461, 43.293200 ], [ 151.655273, 42.228517 ], [ 151.259766, 40.513799 ], [ 149.194336, 39.876019 ], [ 147.524414, 40.946714 ], [ 147.832031, 42.617791 ], [ 149.897461, 43.293200 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827237fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.175781, 6.839170 ], [ 136.582031, 5.703448 ], [ 136.274414, 3.908099 ], [ 134.604492, 3.294082 ], [ 133.198242, 4.434044 ], [ 133.505859, 6.184246 ], [ 135.175781, 6.839170 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822fb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.807617, 42.195969 ], [ 159.433594, 40.979898 ], [ 158.862305, 39.266284 ], [ 156.665039, 38.788345 ], [ 155.039062, 39.977120 ], [ 155.566406, 41.672912 ], [ 157.807617, 42.195969 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82151ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.894531, 57.539417 ], [ 120.014648, 57.373938 ], [ 121.245117, 55.899956 ], [ 119.531250, 54.648413 ], [ 116.674805, 54.826008 ], [ 115.268555, 56.243350 ], [ 116.894531, 57.539417 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.669922, 31.802893 ], [ 138.120117, 30.864510 ], [ 137.812500, 29.420460 ], [ 136.054688, 28.883160 ], [ 134.604492, 29.802518 ], [ 134.912109, 31.278551 ], [ 136.669922, 31.802893 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820ab7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.679688, 57.914848 ], [ 98.920898, 56.728622 ], [ 98.349609, 55.103516 ], [ 95.625000, 54.597528 ], [ 93.383789, 55.702355 ], [ 93.823242, 57.397624 ], [ 96.679688, 57.914848 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.819336, 42.358544 ], [ 110.961914, 41.211722 ], [ 110.258789, 39.740986 ], [ 108.413086, 39.334297 ], [ 107.182617, 40.446947 ], [ 107.841797, 42.000325 ], [ 109.819336, 42.358544 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82314ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 41.277806 ], [ 132.011719, 40.580585 ], [ 132.099609, 38.993572 ], [ 130.649414, 38.203655 ], [ 129.155273, 38.891033 ], [ 129.023438, 40.446947 ], [ 130.429688, 41.277806 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82316ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.879883, 43.707594 ], [ 133.505859, 43.004647 ], [ 133.549805, 41.409776 ], [ 132.011719, 40.580585 ], [ 130.429688, 41.277806 ], [ 130.341797, 42.811522 ], [ 131.879883, 43.707594 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.767578, 42.195969 ], [ 98.393555, 41.145570 ], [ 97.954102, 39.470125 ], [ 95.976562, 38.856820 ], [ 94.350586, 39.876019 ], [ 94.702148, 41.574361 ], [ 96.767578, 42.195969 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.661133, 41.376809 ], [ 174.067383, 39.943436 ], [ 173.144531, 38.307181 ], [ 170.859375, 38.065392 ], [ 169.453125, 39.470125 ], [ 170.288086, 41.145570 ], [ 172.661133, 41.376809 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.901367, 17.769612 ], [ 135.307617, 16.678293 ], [ 135.000000, 14.987240 ], [ 133.286133, 14.349548 ], [ 131.879883, 15.411319 ], [ 132.187500, 17.140790 ], [ 133.901367, 17.769612 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.793945, 42.520700 ], [ 170.288086, 41.145570 ], [ 169.453125, 39.470125 ], [ 167.167969, 39.164141 ], [ 165.629883, 40.513799 ], [ 166.420898, 42.228517 ], [ 168.793945, 42.520700 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82140ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.396484, 57.492214 ], [ 134.384766, 56.968936 ], [ 134.912109, 55.379110 ], [ 132.714844, 54.367759 ], [ 129.946289, 54.851315 ], [ 129.155273, 56.389584 ], [ 131.396484, 57.492214 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82730ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.098633, 12.125264 ], [ 137.504883, 11.005904 ], [ 137.197266, 9.232249 ], [ 135.483398, 8.624472 ], [ 134.077148, 9.752370 ], [ 134.384766, 11.480025 ], [ 136.098633, 12.125264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.458984, 41.705729 ], [ 101.953125, 40.613952 ], [ 101.425781, 38.993572 ], [ 99.492188, 38.444985 ], [ 97.954102, 39.470125 ], [ 98.393555, 41.145570 ], [ 100.458984, 41.705729 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822467fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.708984, 49.610710 ], [ 112.983398, 48.341646 ], [ 112.148438, 46.860191 ], [ 110.039062, 46.589069 ], [ 108.676758, 47.813155 ], [ 109.467773, 49.353756 ], [ 111.708984, 49.610710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 42.261049 ], [ 123.969727, 42.000325 ], [ 124.672852, 40.813809 ], [ 123.442383, 39.943436 ], [ 121.596680, 40.212441 ], [ 120.805664, 41.343825 ], [ 121.992188, 42.261049 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82254ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.225586, 52.375599 ], [ 112.631836, 51.096623 ], [ 111.708984, 49.610710 ], [ 109.467773, 49.353756 ], [ 108.017578, 50.597186 ], [ 108.852539, 52.133488 ], [ 111.225586, 52.375599 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "82246ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.092773, 48.545705 ], [ 116.191406, 47.309034 ], [ 115.312500, 45.890008 ], [ 113.334961, 45.644768 ], [ 112.148438, 46.860191 ], [ 112.983398, 48.341646 ], [ 115.092773, 48.545705 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820adffffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 15279, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 7639.5, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 90.022335, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 45.0111675, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:max:LABEL_X": 46.704241, "tippecanoe:sum:LABEL_Y": -30.355971000000005, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -15.177985500000002, "tippecanoe:min:LABEL_Y": -18.628288, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 6.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.35, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 2318641572, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320786, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:max:NE_ID": 1159321051, "tippecanoe:sum:POP_EST": 27820193, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 13910096.5, "tippecanoe:min:POP_EST": 850886, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -97, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 46849669, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424834.5, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:max:WOE_ID": 23424883, "tippecanoe:sum:WOE_ID_EH": 46849669, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424834.5, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:max:WOE_ID_EH": 23424883, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": "822e1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.294922, 43.802819 ], [ 144.052734, 42.908160 ], [ 143.833008, 41.211722 ], [ 141.987305, 40.480381 ], [ 140.273438, 41.409776 ], [ 140.405273, 43.036776 ], [ 142.294922, 43.802819 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823287fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.000977, 43.165123 ], [ 177.407227, 41.705729 ], [ 176.396484, 40.111689 ], [ 174.067383, 39.943436 ], [ 172.661133, 41.376809 ], [ 173.583984, 43.004647 ], [ 176.000977, 43.165123 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82732ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 14.987240 ], [ 136.406250, 13.880746 ], [ 136.098633, 12.125264 ], [ 134.384766, 11.480025 ], [ 132.978516, 12.597455 ], [ 133.286133, 14.349548 ], [ 135.000000, 14.987240 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.288086, 42.908160 ], [ 127.309570, 42.585444 ], [ 127.485352, 41.079351 ], [ 126.166992, 40.212441 ], [ 124.672852, 40.813809 ], [ 123.969727, 42.000325 ], [ 125.288086, 42.908160 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82259ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.944336, 42.585444 ], [ 94.702148, 41.574361 ], [ 94.350586, 39.876019 ], [ 92.329102, 39.164141 ], [ 90.571289, 40.145289 ], [ 90.834961, 41.869561 ], [ 92.944336, 42.585444 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.391602, 56.218923 ], [ 108.149414, 54.927142 ], [ 107.270508, 53.383328 ], [ 104.765625, 53.067627 ], [ 102.963867, 54.316523 ], [ 103.710938, 55.899956 ], [ 106.391602, 56.218923 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.166992, 56.776808 ], [ 129.155273, 56.389584 ], [ 129.946289, 54.851315 ], [ 127.924805, 53.748711 ], [ 125.156250, 54.110943 ], [ 124.189453, 55.603178 ], [ 126.166992, 56.776808 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ecffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.417969, 46.134170 ], [ 135.175781, 45.429299 ], [ 135.175781, 43.834527 ], [ 133.505859, 43.004647 ], [ 131.879883, 43.707594 ], [ 131.791992, 45.243953 ], [ 133.417969, 46.134170 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.747070, 27.410786 ], [ 137.153320, 26.431228 ], [ 136.845703, 24.886436 ], [ 135.087891, 24.287027 ], [ 133.681641, 25.284438 ], [ 133.989258, 26.824071 ], [ 135.747070, 27.410786 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 43.133061 ], [ 107.841797, 42.000325 ], [ 107.182617, 40.446947 ], [ 105.292969, 40.010787 ], [ 103.930664, 41.112469 ], [ 104.501953, 42.714732 ], [ 106.523438, 43.133061 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "822eeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.175781, 43.834527 ], [ 136.889648, 43.068888 ], [ 136.845703, 41.442726 ], [ 135.175781, 40.647304 ], [ 133.549805, 41.409776 ], [ 133.505859, 43.004647 ], [ 135.175781, 43.834527 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.805664, 41.343825 ], [ 121.596680, 40.212441 ], [ 120.717773, 38.925229 ], [ 119.135742, 38.685510 ], [ 118.300781, 39.808536 ], [ 119.135742, 41.145570 ], [ 120.805664, 41.343825 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827217fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.274414, 3.908099 ], [ 137.680664, 2.767478 ], [ 137.373047, 0.966751 ], [ 135.659180, 0.351560 ], [ 134.296875, 1.493971 ], [ 134.604492, 3.294082 ], [ 136.274414, 3.908099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.148438, 46.860191 ], [ 113.334961, 45.644768 ], [ 112.500000, 44.182204 ], [ 110.522461, 43.866218 ], [ 109.291992, 45.058001 ], [ 110.039062, 46.589069 ], [ 112.148438, 46.860191 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82315ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.485352, 41.079351 ], [ 129.023438, 40.446947 ], [ 129.155273, 38.891033 ], [ 127.792969, 38.065392 ], [ 126.342773, 38.754083 ], [ 126.166992, 40.212441 ], [ 127.485352, 41.079351 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.794922, 43.548548 ], [ 166.420898, 42.228517 ], [ 165.629883, 40.513799 ], [ 163.344727, 40.145289 ], [ 161.718750, 41.442726 ], [ 162.421875, 43.133061 ], [ 164.794922, 43.548548 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8231a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 43.261206 ], [ 116.499023, 42.098222 ], [ 115.664062, 40.680638 ], [ 113.906250, 40.413496 ], [ 112.851562, 41.541478 ], [ 113.642578, 43.004647 ], [ 115.488281, 43.261206 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.074219, 43.612217 ], [ 147.832031, 42.617791 ], [ 147.524414, 40.946714 ], [ 145.546875, 40.245992 ], [ 143.833008, 41.211722 ], [ 144.052734, 42.908160 ], [ 146.074219, 43.612217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.852539, 42.843751 ], [ 155.566406, 41.672912 ], [ 155.039062, 39.977120 ], [ 152.929688, 39.402244 ], [ 151.259766, 40.513799 ], [ 151.655273, 42.228517 ], [ 153.852539, 42.843751 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822edffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.780273, 48.429201 ], [ 137.021484, 47.872144 ], [ 136.977539, 46.286224 ], [ 135.175781, 45.429299 ], [ 133.417969, 46.134170 ], [ 132.978516, 47.517201 ], [ 134.780273, 48.429201 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 34.234512 ], [ 136.713867, 33.394759 ], [ 136.669922, 31.802893 ], [ 134.912109, 31.278551 ], [ 133.461914, 32.138409 ], [ 133.769531, 33.504759 ], [ 135.219727, 34.234512 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.060547, 59.040555 ], [ 115.356445, 58.995311 ], [ 116.894531, 57.539417 ], [ 115.268555, 56.243350 ], [ 112.280273, 56.292157 ], [ 110.654297, 57.657158 ], [ 112.060547, 59.040555 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82241ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.051758, 43.834527 ], [ 104.501953, 42.714732 ], [ 103.930664, 41.112469 ], [ 101.953125, 40.613952 ], [ 100.458984, 41.705729 ], [ 100.942383, 43.357138 ], [ 103.051758, 43.834527 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.904297, 58.631217 ], [ 125.112305, 58.332567 ], [ 126.166992, 56.776808 ], [ 124.189453, 55.603178 ], [ 121.245117, 55.899956 ], [ 120.014648, 57.373938 ], [ 121.904297, 58.631217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.286133, 52.829321 ], [ 135.878906, 52.268157 ], [ 136.274414, 50.792047 ], [ 134.296875, 49.866317 ], [ 131.923828, 50.345460 ], [ 131.308594, 51.808615 ], [ 133.286133, 52.829321 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.718750, 41.442726 ], [ 163.344727, 40.145289 ], [ 162.641602, 38.444985 ], [ 160.444336, 38.030786 ], [ 158.862305, 39.266284 ], [ 159.433594, 40.979898 ], [ 161.718750, 41.442726 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.780273, 22.715390 ], [ 136.230469, 21.698265 ], [ 135.922852, 20.055931 ], [ 134.165039, 19.435514 ], [ 132.758789, 20.468189 ], [ 133.066406, 22.105999 ], [ 134.780273, 22.715390 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8231affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.256836, 42.293564 ], [ 119.135742, 41.145570 ], [ 118.300781, 39.808536 ], [ 116.586914, 39.537940 ], [ 115.664062, 40.680638 ], [ 116.499023, 42.098222 ], [ 118.256836, 42.293564 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8231b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.851562, 41.541478 ], [ 113.906250, 40.413496 ], [ 113.159180, 38.959409 ], [ 111.357422, 38.616870 ], [ 110.258789, 39.740986 ], [ 110.961914, 41.211722 ], [ 112.851562, 41.541478 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.930664, 41.112469 ], [ 105.292969, 40.010787 ], [ 104.677734, 38.444985 ], [ 102.832031, 37.961523 ], [ 101.425781, 38.993572 ], [ 101.953125, 40.613952 ], [ 103.930664, 41.112469 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.691406, 43.897892 ], [ 140.405273, 43.036776 ], [ 140.273438, 41.409776 ], [ 138.515625, 40.613952 ], [ 136.845703, 41.442726 ], [ 136.889648, 43.068888 ], [ 138.691406, 43.897892 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820aa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.790039, 60.673179 ], [ 97.294922, 59.534318 ], [ 96.679688, 57.914848 ], [ 93.823242, 57.397624 ], [ 91.318359, 58.470721 ], [ 91.713867, 60.130564 ], [ 94.790039, 60.673179 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "820ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 10678, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 5339, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:max:GDP_MD": 7666, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 63.52516800000001, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 31.762584000000005, "tippecanoe:min:LABEL_X": 29.917086, "tippecanoe:max:LABEL_X": 33.608082, "tippecanoe:sum:LABEL_Y": -16.719573, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -8.3597865, "tippecanoe:min:LABEL_Y": -13.386737, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:max:NE_ID": 1159321081, "tippecanoe:sum:POP_EST": 30159327, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 15079663.5, "tippecanoe:min:POP_EST": 11530580, "tippecanoe:max:POP_EST": 18628747, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849663, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424831.5, "tippecanoe:min:WOE_ID": 23424774, "tippecanoe:max:WOE_ID": 23424889, "tippecanoe:sum:WOE_ID_EH": 46849663, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424831.5, "tippecanoe:min:WOE_ID_EH": 23424774, "tippecanoe:max:WOE_ID_EH": 23424889, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "820a9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.644531, 58.904646 ], [ 107.578125, 57.610107 ], [ 106.391602, 56.218923 ], [ 103.710938, 55.899956 ], [ 101.733398, 57.136239 ], [ 102.524414, 58.722599 ], [ 105.644531, 58.904646 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.258789, 60.435542 ], [ 112.060547, 59.040555 ], [ 110.654297, 57.657158 ], [ 107.578125, 57.610107 ], [ 105.644531, 58.904646 ], [ 106.875000, 60.348696 ], [ 110.258789, 60.435542 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.963867, 54.316523 ], [ 104.765625, 53.067627 ], [ 104.018555, 51.481383 ], [ 101.601562, 51.069017 ], [ 99.755859, 52.268157 ], [ 100.371094, 53.904338 ], [ 102.963867, 54.316523 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.986328, 49.439557 ], [ 102.700195, 48.253941 ], [ 102.084961, 46.619261 ], [ 99.843750, 46.134170 ], [ 98.129883, 47.249407 ], [ 98.613281, 48.922499 ], [ 100.986328, 49.439557 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82255ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.017578, 50.597186 ], [ 109.467773, 49.353756 ], [ 108.676758, 47.813155 ], [ 106.479492, 47.457809 ], [ 104.985352, 48.661943 ], [ 105.688477, 50.261254 ], [ 108.017578, 50.597186 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.084961, 46.619261 ], [ 103.666992, 45.460131 ], [ 103.051758, 43.834527 ], [ 100.942383, 43.357138 ], [ 99.360352, 44.465151 ], [ 99.843750, 46.134170 ], [ 102.084961, 46.619261 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82251ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.723633, 50.064192 ], [ 98.613281, 48.922499 ], [ 98.129883, 47.249407 ], [ 95.844727, 46.679594 ], [ 93.955078, 47.783635 ], [ 94.306641, 49.496675 ], [ 96.723633, 50.064192 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822527fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.383789, 55.702355 ], [ 95.625000, 54.597528 ], [ 95.185547, 52.908902 ], [ 92.592773, 52.295042 ], [ 90.351562, 53.357109 ], [ 90.659180, 55.078367 ], [ 93.383789, 55.702355 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82250ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.755859, 52.268157 ], [ 101.601562, 51.069017 ], [ 100.986328, 49.439557 ], [ 98.613281, 48.922499 ], [ 96.723633, 50.064192 ], [ 97.250977, 51.754240 ], [ 99.755859, 52.268157 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.018555, 51.481383 ], [ 105.688477, 50.261254 ], [ 104.985352, 48.661943 ], [ 102.700195, 48.253941 ], [ 100.986328, 49.439557 ], [ 101.601562, 51.069017 ], [ 104.018555, 51.481383 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82252ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.349609, 55.103516 ], [ 100.371094, 53.904338 ], [ 99.755859, 52.268157 ], [ 97.250977, 51.754240 ], [ 95.185547, 52.908902 ], [ 95.625000, 54.597528 ], [ 98.349609, 55.103516 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.185547, 52.908902 ], [ 97.250977, 51.754240 ], [ 96.723633, 50.064192 ], [ 94.306641, 49.496675 ], [ 92.241211, 50.569283 ], [ 92.592773, 52.295042 ], [ 95.185547, 52.908902 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8225affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.955078, 47.783635 ], [ 95.844727, 46.679594 ], [ 95.449219, 44.964798 ], [ 93.251953, 44.308127 ], [ 91.362305, 45.367584 ], [ 91.625977, 47.100045 ], [ 93.955078, 47.783635 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82258ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.449219, 44.964798 ], [ 97.207031, 43.897892 ], [ 96.767578, 42.195969 ], [ 94.702148, 41.574361 ], [ 92.944336, 42.585444 ], [ 93.251953, 44.308127 ], [ 95.449219, 44.964798 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.129883, 47.249407 ], [ 99.843750, 46.134170 ], [ 99.360352, 44.465151 ], [ 97.207031, 43.897892 ], [ 95.449219, 44.964798 ], [ 95.844727, 46.679594 ], [ 98.129883, 47.249407 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.360352, 44.465151 ], [ 100.942383, 43.357138 ], [ 100.458984, 41.705729 ], [ 98.393555, 41.145570 ], [ 96.767578, 42.195969 ], [ 97.207031, 43.897892 ], [ 99.360352, 44.465151 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82256ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.961914, 54.977614 ], [ 112.456055, 53.644638 ], [ 111.225586, 52.375599 ], [ 108.852539, 52.133488 ], [ 107.270508, 53.383328 ], [ 108.149414, 54.927142 ], [ 110.961914, 54.977614 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.270508, 53.383328 ], [ 108.852539, 52.133488 ], [ 108.017578, 50.597186 ], [ 105.688477, 50.261254 ], [ 104.018555, 51.481383 ], [ 104.765625, 53.067627 ], [ 107.270508, 53.383328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82242ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.985352, 48.661943 ], [ 106.479492, 47.457809 ], [ 105.820312, 45.890008 ], [ 103.666992, 45.460131 ], [ 102.084961, 46.619261 ], [ 102.700195, 48.253941 ], [ 104.985352, 48.661943 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82240ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.820312, 45.890008 ], [ 107.226562, 44.715514 ], [ 106.523438, 43.133061 ], [ 104.501953, 42.714732 ], [ 103.051758, 43.834527 ], [ 103.666992, 45.460131 ], [ 105.820312, 45.890008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822477fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.676758, 47.813155 ], [ 110.039062, 46.589069 ], [ 109.291992, 45.058001 ], [ 107.226562, 44.715514 ], [ 105.820312, 45.890008 ], [ 106.479492, 47.457809 ], [ 108.676758, 47.813155 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822457fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.291992, 45.058001 ], [ 110.522461, 43.866218 ], [ 109.819336, 42.358544 ], [ 107.841797, 42.000325 ], [ 106.523438, 43.133061 ], [ 107.226562, 44.715514 ], [ 109.291992, 45.058001 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821577fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "82155ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.759766, 62.369996 ], [ 132.363281, 61.876870 ], [ 133.110352, 60.217991 ], [ 130.605469, 59.108308 ], [ 127.309570, 59.534318 ], [ 126.254883, 61.143235 ], [ 128.759766, 62.369996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.695312, 61.480760 ], [ 126.254883, 61.143235 ], [ 127.309570, 59.534318 ], [ 125.112305, 58.332567 ], [ 121.904297, 58.631217 ], [ 120.541992, 60.174306 ], [ 122.695312, 61.480760 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.662109, 64.377941 ], [ 127.617188, 64.014496 ], [ 128.759766, 62.369996 ], [ 126.254883, 61.143235 ], [ 122.695312, 61.480760 ], [ 121.245117, 63.054959 ], [ 123.662109, 64.377941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821567fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:max:POP_EST": 97625, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 8, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "82150ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.114258, 60.348696 ], [ 120.541992, 60.174306 ], [ 121.904297, 58.631217 ], [ 120.014648, 57.373938 ], [ 116.894531, 57.539417 ], [ 115.356445, 58.995311 ], [ 117.114258, 60.348696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82142ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, 59.534318 ], [ 130.605469, 59.108308 ], [ 131.396484, 57.492214 ], [ 129.155273, 56.389584 ], [ 126.166992, 56.776808 ], [ 125.112305, 58.332567 ], [ 127.309570, 59.534318 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8215affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.674805, 54.826008 ], [ 119.531250, 54.648413 ], [ 120.673828, 53.225768 ], [ 119.135742, 52.052490 ], [ 116.499023, 52.214339 ], [ 115.224609, 53.566414 ], [ 116.674805, 54.826008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82159ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.234375, 50.680797 ], [ 122.739258, 50.429518 ], [ 123.618164, 49.066668 ], [ 122.167969, 47.989922 ], [ 119.794922, 48.224673 ], [ 118.784180, 49.553726 ], [ 120.234375, 50.680797 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 0, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 73.50521, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 73.50521, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_Y": -53.103462, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -53.103462, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:max:LABEL_Y": -53.103462, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 25, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:sum:NE_ID": 1159320361, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320361, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:max:NE_ID": 1159320361, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 0, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 28289411, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289411, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID_EH": 28289411, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289411, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "82158ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.673828, 53.225768 ], [ 123.398438, 52.961875 ], [ 124.365234, 51.536086 ], [ 122.739258, 50.429518 ], [ 120.234375, 50.680797 ], [ 119.135742, 52.052490 ], [ 120.673828, 53.225768 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.618164, 49.066668 ], [ 126.035156, 48.748945 ], [ 126.782227, 47.398349 ], [ 125.244141, 46.407564 ], [ 123.002930, 46.679594 ], [ 122.167969, 47.989922 ], [ 123.618164, 49.066668 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82148ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.923828, 50.345460 ], [ 134.296875, 49.866317 ], [ 134.780273, 48.429201 ], [ 132.978516, 47.517201 ], [ 130.693359, 47.960502 ], [ 130.078125, 49.382373 ], [ 131.923828, 50.345460 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 16, "tippecanoe:min:GDP_MD": 16, "tippecanoe:max:GDP_MD": 16, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 69.122136, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 69.122136, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:max:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_Y": -49.303721, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -49.303721, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 35, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 22, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:max:NAME_LEN": 22, "tippecanoe:sum:NE_ID": 1159320631, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320631, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 140, "tippecanoe:min:POP_EST": 140, "tippecanoe:max:POP_EST": 140, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 28289406, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 28289406, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:max:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID_EH": 28289406, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 28289406, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:max:WOE_ID_EH": 28289406, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "821487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.661133, 49.781264 ], [ 130.078125, 49.382373 ], [ 130.693359, 47.960502 ], [ 129.023438, 47.010226 ], [ 126.782227, 47.398349 ], [ 126.035156, 48.748945 ], [ 127.661133, 49.781264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.499023, 52.214339 ], [ 119.135742, 52.052490 ], [ 120.234375, 50.680797 ], [ 118.784180, 49.553726 ], [ 116.323242, 49.696062 ], [ 115.136719, 51.013755 ], [ 116.499023, 52.214339 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82312ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.002930, 46.679594 ], [ 125.244141, 46.407564 ], [ 125.991211, 45.089036 ], [ 124.584961, 44.150681 ], [ 122.475586, 44.433780 ], [ 121.640625, 45.675482 ], [ 123.002930, 46.679594 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82310ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.475586, 44.433780 ], [ 124.584961, 44.150681 ], [ 125.288086, 42.908160 ], [ 123.969727, 42.000325 ], [ 121.992188, 42.261049 ], [ 121.201172, 43.452919 ], [ 122.475586, 44.433780 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821597fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.323242, 49.696062 ], [ 118.784180, 49.553726 ], [ 119.794922, 48.224673 ], [ 118.476562, 47.159840 ], [ 116.191406, 47.309034 ], [ 115.092773, 48.545705 ], [ 116.323242, 49.696062 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82244ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 45.890008 ], [ 116.367188, 44.684277 ], [ 115.488281, 43.261206 ], [ 113.642578, 43.004647 ], [ 112.500000, 44.182204 ], [ 113.334961, 45.644768 ], [ 115.312500, 45.890008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.212891, 44.871443 ], [ 119.135742, 43.675818 ], [ 118.256836, 42.293564 ], [ 116.499023, 42.098222 ], [ 115.488281, 43.261206 ], [ 116.367188, 44.684277 ], [ 118.212891, 44.871443 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.191406, 47.309034 ], [ 118.476562, 47.159840 ], [ 119.443359, 45.890008 ], [ 118.212891, 44.871443 ], [ 116.367188, 44.684277 ], [ 115.312500, 45.890008 ], [ 116.191406, 47.309034 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.443359, 45.890008 ], [ 121.640625, 45.675482 ], [ 122.475586, 44.433780 ], [ 121.201172, 43.452919 ], [ 119.135742, 43.675818 ], [ 118.212891, 44.871443 ], [ 119.443359, 45.890008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.794922, 48.224673 ], [ 122.167969, 47.989922 ], [ 123.002930, 46.679594 ], [ 121.640625, 45.675482 ], [ 119.443359, 45.890008 ], [ 118.476562, 47.159840 ], [ 119.794922, 48.224673 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82311ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.135742, 43.675818 ], [ 121.201172, 43.452919 ], [ 121.992188, 42.261049 ], [ 120.805664, 41.343825 ], [ 119.135742, 41.145570 ], [ 118.256836, 42.293564 ], [ 119.135742, 43.675818 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.715820, 52.268157 ], [ 131.308594, 51.808615 ], [ 131.923828, 50.345460 ], [ 130.078125, 49.382373 ], [ 127.661133, 49.781264 ], [ 126.914062, 51.206883 ], [ 128.715820, 52.268157 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82141ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.946289, 54.851315 ], [ 132.714844, 54.367759 ], [ 133.286133, 52.829321 ], [ 131.308594, 51.808615 ], [ 128.715820, 52.268157 ], [ 127.924805, 53.748711 ], [ 129.946289, 54.851315 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.638672, 45.675482 ], [ 131.791992, 45.243953 ], [ 131.879883, 43.707594 ], [ 130.341797, 42.811522 ], [ 128.715820, 43.484812 ], [ 128.100586, 44.746733 ], [ 129.638672, 45.675482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82149ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.693359, 47.960502 ], [ 132.978516, 47.517201 ], [ 133.417969, 46.134170 ], [ 131.791992, 45.243953 ], [ 129.638672, 45.675482 ], [ 129.023438, 47.010226 ], [ 130.693359, 47.960502 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821497fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.782227, 47.398349 ], [ 129.023438, 47.010226 ], [ 129.638672, 45.675482 ], [ 128.100586, 44.746733 ], [ 125.991211, 45.089036 ], [ 125.244141, 46.407564 ], [ 126.782227, 47.398349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.991211, 45.089036 ], [ 128.100586, 44.746733 ], [ 128.715820, 43.484812 ], [ 127.309570, 42.585444 ], [ 125.288086, 42.908160 ], [ 124.584961, 44.150681 ], [ 125.991211, 45.089036 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822497fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625000, 37.195331 ], [ 97.163086, 36.208823 ], [ 96.811523, 34.597042 ], [ 94.965820, 33.906896 ], [ 93.427734, 34.849875 ], [ 93.735352, 36.527295 ], [ 95.625000, 37.195331 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 32.101190 ], [ 99.667969, 31.203405 ], [ 99.536133, 29.611670 ], [ 97.734375, 28.960089 ], [ 96.152344, 29.878755 ], [ 96.284180, 31.428663 ], [ 98.085938, 32.101190 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824067fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 24.407138 ], [ 103.842773, 23.362429 ], [ 103.666992, 21.698265 ], [ 101.953125, 21.002471 ], [ 100.415039, 22.024546 ], [ 100.590820, 23.725012 ], [ 102.304688, 24.407138 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826907fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.368164, 15.284185 ], [ 113.730469, 14.221789 ], [ 113.510742, 12.511665 ], [ 111.972656, 11.867351 ], [ 110.566406, 12.940322 ], [ 110.786133, 14.647368 ], [ 112.368164, 15.284185 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.427734, 34.849875 ], [ 94.965820, 33.906896 ], [ 94.658203, 32.287133 ], [ 92.900391, 31.615966 ], [ 91.362305, 32.472695 ], [ 91.582031, 34.125448 ], [ 93.427734, 34.849875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.431641, 23.845650 ], [ 123.793945, 22.958393 ], [ 123.530273, 21.371244 ], [ 121.948242, 20.673905 ], [ 120.585938, 21.575719 ], [ 120.849609, 23.120154 ], [ 122.431641, 23.845650 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.203125, 32.324276 ], [ 114.609375, 31.278551 ], [ 114.389648, 29.802518 ], [ 112.719727, 29.382175 ], [ 111.269531, 30.410782 ], [ 111.533203, 31.914868 ], [ 113.203125, 32.324276 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.350586, 39.876019 ], [ 95.976562, 38.856820 ], [ 95.625000, 37.195331 ], [ 93.735352, 36.527295 ], [ 92.065430, 37.474858 ], [ 92.329102, 39.164141 ], [ 94.350586, 39.876019 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.660156, 23.079732 ], [ 133.066406, 22.105999 ], [ 132.758789, 20.468189 ], [ 131.044922, 19.849394 ], [ 129.638672, 20.838278 ], [ 129.946289, 22.471955 ], [ 131.660156, 23.079732 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82406ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.008789, 24.726875 ], [ 100.590820, 23.725012 ], [ 100.415039, 22.024546 ], [ 98.701172, 21.289374 ], [ 97.163086, 22.309426 ], [ 97.294922, 24.006326 ], [ 99.008789, 24.726875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.658203, 32.287133 ], [ 96.284180, 31.428663 ], [ 96.152344, 29.878755 ], [ 94.394531, 29.152161 ], [ 92.768555, 30.031055 ], [ 92.900391, 31.615966 ], [ 94.658203, 32.287133 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82692ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.169922, 17.602139 ], [ 115.532227, 16.509833 ], [ 115.312500, 14.859850 ], [ 113.730469, 14.221789 ], [ 112.368164, 15.284185 ], [ 112.587891, 17.014768 ], [ 114.169922, 17.602139 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.994141, 4.653080 ], [ 115.268555, 3.688855 ], [ 115.048828, 2.021065 ], [ 113.554688, 1.274309 ], [ 112.236328, 2.284551 ], [ 112.456055, 3.951941 ], [ 113.994141, 4.653080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82415ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.556641, 24.006326 ], [ 107.050781, 22.958393 ], [ 106.875000, 21.289374 ], [ 105.205078, 20.632784 ], [ 103.666992, 21.698265 ], [ 103.842773, 23.362429 ], [ 105.556641, 24.006326 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82248ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.425781, 38.993572 ], [ 102.832031, 37.961523 ], [ 102.304688, 36.385913 ], [ 100.458984, 35.817813 ], [ 99.052734, 36.809285 ], [ 99.492188, 38.444985 ], [ 101.425781, 38.993572 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.743164, 33.431441 ], [ 108.281250, 32.472695 ], [ 108.105469, 30.939924 ], [ 106.347656, 30.410782 ], [ 104.809570, 31.428663 ], [ 104.985352, 32.916485 ], [ 106.743164, 33.431441 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 31.802893 ], [ 103.051758, 30.864510 ], [ 102.875977, 29.267233 ], [ 101.118164, 28.652031 ], [ 99.536133, 29.611670 ], [ 99.667969, 31.203405 ], [ 101.469727, 31.802893 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.039062, 32.916485 ], [ 111.533203, 31.914868 ], [ 111.269531, 30.410782 ], [ 109.599609, 29.916852 ], [ 108.105469, 30.939924 ], [ 108.281250, 32.472695 ], [ 110.039062, 32.916485 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82698ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.895508, 7.406048 ], [ 114.213867, 6.358975 ], [ 113.994141, 4.653080 ], [ 112.456055, 3.951941 ], [ 111.137695, 4.959615 ], [ 111.313477, 6.708254 ], [ 112.895508, 7.406048 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823cc7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.373047, 25.125393 ], [ 93.999023, 24.206890 ], [ 93.867188, 22.512557 ], [ 92.153320, 21.739091 ], [ 90.571289, 22.634293 ], [ 90.703125, 24.327077 ], [ 92.373047, 25.125393 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.403320, 33.870416 ], [ 104.985352, 32.916485 ], [ 104.809570, 31.428663 ], [ 103.051758, 30.864510 ], [ 101.469727, 31.802893 ], [ 101.645508, 33.321349 ], [ 103.403320, 33.870416 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824107fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.873047, 22.512557 ], [ 116.191406, 21.412162 ], [ 115.971680, 19.808054 ], [ 114.389648, 19.269665 ], [ 113.027344, 20.344627 ], [ 113.247070, 21.983801 ], [ 114.873047, 22.512557 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.269531, 30.410782 ], [ 112.719727, 29.382175 ], [ 112.500000, 27.839076 ], [ 110.830078, 27.332735 ], [ 109.379883, 28.381735 ], [ 109.599609, 29.916852 ], [ 111.269531, 30.410782 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.159180, 38.959409 ], [ 114.125977, 37.857507 ], [ 113.906250, 36.527295 ], [ 112.192383, 36.173357 ], [ 110.698242, 37.160317 ], [ 111.357422, 38.616870 ], [ 113.159180, 38.959409 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826497fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.415039, 22.024546 ], [ 101.953125, 21.002471 ], [ 101.777344, 19.269665 ], [ 100.107422, 18.562947 ], [ 98.569336, 19.559790 ], [ 98.701172, 21.289374 ], [ 100.415039, 22.024546 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82649ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.163086, 22.309426 ], [ 98.701172, 21.289374 ], [ 98.569336, 19.559790 ], [ 96.855469, 18.812718 ], [ 95.317383, 19.808054 ], [ 95.449219, 21.534847 ], [ 97.163086, 22.309426 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.954102, 39.470125 ], [ 99.492188, 38.444985 ], [ 99.052734, 36.809285 ], [ 97.163086, 36.208823 ], [ 95.625000, 37.195331 ], [ 95.976562, 38.856820 ], [ 97.954102, 39.470125 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82249ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.052734, 36.809285 ], [ 100.458984, 35.817813 ], [ 100.019531, 34.234512 ], [ 98.217773, 33.614619 ], [ 96.811523, 34.597042 ], [ 97.163086, 36.208823 ], [ 99.052734, 36.809285 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824047fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.942383, 27.059126 ], [ 102.480469, 26.037042 ], [ 102.304688, 24.407138 ], [ 100.590820, 23.725012 ], [ 99.008789, 24.726875 ], [ 99.184570, 26.391870 ], [ 100.942383, 27.059126 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826927fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.225586, 18.062312 ], [ 112.587891, 17.014768 ], [ 112.368164, 15.284185 ], [ 110.786133, 14.647368 ], [ 109.379883, 15.749963 ], [ 109.599609, 17.434511 ], [ 111.225586, 18.062312 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ccffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.712891, 24.966140 ], [ 97.294922, 24.006326 ], [ 97.163086, 22.309426 ], [ 95.449219, 21.534847 ], [ 93.867188, 22.512557 ], [ 93.999023, 24.206890 ], [ 95.712891, 24.966140 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82691ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.510742, 12.511665 ], [ 114.829102, 11.480025 ], [ 114.609375, 9.752370 ], [ 113.115234, 9.102097 ], [ 111.752930, 10.141932 ], [ 111.972656, 11.867351 ], [ 113.510742, 12.511665 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824bb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.531250, 23.966176 ], [ 120.849609, 23.120154 ], [ 120.585938, 21.575719 ], [ 119.047852, 20.838278 ], [ 117.773438, 21.943046 ], [ 117.993164, 23.523700 ], [ 119.531250, 23.966176 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82411ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.686523, 25.204941 ], [ 115.092773, 24.126702 ], [ 114.873047, 22.512557 ], [ 113.247070, 21.983801 ], [ 111.840820, 23.079732 ], [ 112.060547, 24.686952 ], [ 113.686523, 25.204941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 36.385913 ], [ 103.623047, 35.353216 ], [ 103.403320, 33.870416 ], [ 101.645508, 33.321349 ], [ 100.019531, 34.234512 ], [ 100.458984, 35.817813 ], [ 102.304688, 36.385913 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824057fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.875977, 29.267233 ], [ 104.414062, 28.304381 ], [ 104.238281, 26.667096 ], [ 102.480469, 26.037042 ], [ 100.942383, 27.059126 ], [ 101.118164, 28.652031 ], [ 102.875977, 29.267233 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824117fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.674805, 24.607069 ], [ 117.993164, 23.523700 ], [ 117.773438, 21.943046 ], [ 116.191406, 21.412162 ], [ 114.873047, 22.512557 ], [ 115.092773, 24.126702 ], [ 116.674805, 24.607069 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823cdffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.867188, 22.512557 ], [ 95.449219, 21.534847 ], [ 95.317383, 19.808054 ], [ 93.603516, 19.020577 ], [ 92.021484, 19.973349 ], [ 92.153320, 21.739091 ], [ 93.867188, 22.512557 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.972656, 34.777716 ], [ 113.422852, 33.760882 ], [ 113.203125, 32.324276 ], [ 111.533203, 31.914868 ], [ 110.039062, 32.916485 ], [ 110.258789, 34.379713 ], [ 111.972656, 34.777716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.540039, 23.402765 ], [ 129.946289, 22.471955 ], [ 129.638672, 20.838278 ], [ 127.968750, 20.179724 ], [ 126.562500, 21.125498 ], [ 126.826172, 22.755921 ], [ 128.540039, 23.402765 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.019531, 34.234512 ], [ 101.645508, 33.321349 ], [ 101.469727, 31.802893 ], [ 99.667969, 31.203405 ], [ 98.085938, 32.101190 ], [ 98.217773, 33.614619 ], [ 100.019531, 34.234512 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.463867, 23.644524 ], [ 126.826172, 22.755921 ], [ 126.562500, 21.125498 ], [ 124.892578, 20.468189 ], [ 123.530273, 21.371244 ], [ 123.793945, 22.958393 ], [ 125.463867, 23.644524 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824157fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.764648, 23.563987 ], [ 110.214844, 22.512557 ], [ 109.995117, 20.838278 ], [ 108.325195, 20.220966 ], [ 106.875000, 21.289374 ], [ 107.050781, 22.958393 ], [ 108.764648, 23.563987 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824037fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.500000, 27.839076 ], [ 113.950195, 26.784847 ], [ 113.686523, 25.204941 ], [ 112.060547, 24.686952 ], [ 110.654297, 25.760320 ], [ 110.830078, 27.332735 ], [ 112.500000, 27.839076 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.811523, 34.597042 ], [ 98.217773, 33.614619 ], [ 98.085938, 32.101190 ], [ 96.284180, 31.428663 ], [ 94.658203, 32.287133 ], [ 94.965820, 33.906896 ], [ 96.811523, 34.597042 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.906250, 36.527295 ], [ 115.356445, 35.532226 ], [ 115.092773, 34.161818 ], [ 113.422852, 33.760882 ], [ 111.972656, 34.777716 ], [ 112.192383, 36.173357 ], [ 113.906250, 36.527295 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82412ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.027344, 20.344627 ], [ 114.389648, 19.269665 ], [ 114.169922, 17.602139 ], [ 112.587891, 17.014768 ], [ 111.225586, 18.062312 ], [ 111.401367, 19.766704 ], [ 113.027344, 20.344627 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8269affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.752930, 10.141932 ], [ 113.115234, 9.102097 ], [ 112.895508, 7.406048 ], [ 111.313477, 6.708254 ], [ 109.951172, 7.710992 ], [ 110.170898, 9.449062 ], [ 111.752930, 10.141932 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82410ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.840820, 23.079732 ], [ 113.247070, 21.983801 ], [ 113.027344, 20.344627 ], [ 111.401367, 19.766704 ], [ 109.995117, 20.838278 ], [ 110.214844, 22.512557 ], [ 111.840820, 23.079732 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82405ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.536133, 29.611670 ], [ 101.118164, 28.652031 ], [ 100.942383, 27.059126 ], [ 99.184570, 26.391870 ], [ 97.602539, 27.332735 ], [ 97.734375, 28.960089 ], [ 99.536133, 29.611670 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.768555, 30.031055 ], [ 94.394531, 29.152161 ], [ 94.262695, 27.527758 ], [ 92.504883, 26.784847 ], [ 90.922852, 27.683528 ], [ 91.010742, 29.267233 ], [ 92.768555, 30.031055 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823ceffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.262695, 27.527758 ], [ 95.844727, 26.627818 ], [ 95.712891, 24.966140 ], [ 93.999023, 24.206890 ], [ 92.373047, 25.125393 ], [ 92.504883, 26.784847 ], [ 94.262695, 27.527758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823c5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.152344, 29.878755 ], [ 97.734375, 28.960089 ], [ 97.602539, 27.332735 ], [ 95.844727, 26.627818 ], [ 94.262695, 27.527758 ], [ 94.394531, 29.152161 ], [ 96.152344, 29.878755 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82404ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.602539, 27.332735 ], [ 99.184570, 26.391870 ], [ 99.008789, 24.726875 ], [ 97.294922, 24.006326 ], [ 95.712891, 24.966140 ], [ 95.844727, 26.627818 ], [ 97.602539, 27.332735 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.380859, 35.853440 ], [ 106.962891, 34.885931 ], [ 106.743164, 33.431441 ], [ 104.985352, 32.916485 ], [ 103.403320, 33.870416 ], [ 103.623047, 35.353216 ], [ 105.380859, 35.853440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.677734, 38.444985 ], [ 105.952148, 37.370157 ], [ 105.380859, 35.853440 ], [ 103.623047, 35.353216 ], [ 102.304688, 36.385913 ], [ 102.832031, 37.961523 ], [ 104.677734, 38.444985 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.797852, 37.822802 ], [ 108.940430, 36.774092 ], [ 108.720703, 35.353216 ], [ 106.962891, 34.885931 ], [ 105.380859, 35.853440 ], [ 105.952148, 37.370157 ], [ 107.797852, 37.822802 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82408ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.720703, 35.353216 ], [ 110.258789, 34.379713 ], [ 110.039062, 32.916485 ], [ 108.281250, 32.472695 ], [ 106.743164, 33.431441 ], [ 106.962891, 34.885931 ], [ 108.720703, 35.353216 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82409ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.698242, 37.160317 ], [ 112.192383, 36.173357 ], [ 111.972656, 34.777716 ], [ 110.258789, 34.379713 ], [ 108.720703, 35.353216 ], [ 108.940430, 36.774092 ], [ 110.698242, 37.160317 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.182617, 40.446947 ], [ 108.413086, 39.334297 ], [ 107.797852, 37.822802 ], [ 105.952148, 37.370157 ], [ 104.677734, 38.444985 ], [ 105.292969, 40.010787 ], [ 107.182617, 40.446947 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8224cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.258789, 39.740986 ], [ 111.357422, 38.616870 ], [ 110.698242, 37.160317 ], [ 108.940430, 36.774092 ], [ 107.797852, 37.822802 ], [ 108.413086, 39.334297 ], [ 110.258789, 39.740986 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82401ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.105469, 30.939924 ], [ 109.599609, 29.916852 ], [ 109.379883, 28.381735 ], [ 107.666016, 27.839076 ], [ 106.171875, 28.883160 ], [ 106.347656, 30.410782 ], [ 108.105469, 30.939924 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.379883, 28.381735 ], [ 110.830078, 27.332735 ], [ 110.654297, 25.760320 ], [ 108.940430, 25.204941 ], [ 107.490234, 26.234302 ], [ 107.666016, 27.839076 ], [ 109.379883, 28.381735 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.809570, 31.428663 ], [ 106.347656, 30.410782 ], [ 106.171875, 28.883160 ], [ 104.414062, 28.304381 ], [ 102.875977, 29.267233 ], [ 103.051758, 30.864510 ], [ 104.809570, 31.428663 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82400ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.171875, 28.883160 ], [ 107.666016, 27.839076 ], [ 107.490234, 26.234302 ], [ 105.776367, 25.641526 ], [ 104.238281, 26.667096 ], [ 104.414062, 28.304381 ], [ 106.171875, 28.883160 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82402ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.490234, 26.234302 ], [ 108.940430, 25.204941 ], [ 108.764648, 23.563987 ], [ 107.050781, 22.958393 ], [ 105.556641, 24.006326 ], [ 105.776367, 25.641526 ], [ 107.490234, 26.234302 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824077fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, 26.667096 ], [ 105.776367, 25.641526 ], [ 105.556641, 24.006326 ], [ 103.842773, 23.362429 ], [ 102.304688, 24.407138 ], [ 102.480469, 26.037042 ], [ 104.238281, 26.667096 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824027fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 25.760320 ], [ 112.060547, 24.686952 ], [ 111.840820, 23.079732 ], [ 110.214844, 22.512557 ], [ 108.764648, 23.563987 ], [ 108.940430, 25.204941 ], [ 110.654297, 25.760320 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826437fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.448242, 11.436955 ], [ 100.942383, 10.401378 ], [ 100.810547, 8.624472 ], [ 99.140625, 7.841615 ], [ 97.646484, 8.885072 ], [ 97.822266, 10.660608 ], [ 99.448242, 11.436955 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826417fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 14.264383 ], [ 99.624023, 13.239945 ], [ 99.448242, 11.436955 ], [ 97.822266, 10.660608 ], [ 96.284180, 11.695273 ], [ 96.416016, 13.496473 ], [ 98.085938, 14.264383 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826407fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.284180, 11.695273 ], [ 97.822266, 10.660608 ], [ 97.646484, 8.885072 ], [ 96.020508, 8.102739 ], [ 94.482422, 9.102097 ], [ 94.614258, 10.919618 ], [ 96.284180, 11.695273 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82640ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.120117, 11.910354 ], [ 94.614258, 10.919618 ], [ 94.482422, 9.102097 ], [ 92.856445, 8.320212 ], [ 91.362305, 9.318990 ], [ 91.450195, 11.092166 ], [ 93.120117, 11.910354 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82648ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.317383, 19.808054 ], [ 96.855469, 18.812718 ], [ 96.723633, 17.056785 ], [ 95.009766, 16.299051 ], [ 93.471680, 17.266728 ], [ 93.603516, 19.020577 ], [ 95.317383, 19.808054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826917fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.566406, 12.940322 ], [ 111.972656, 11.867351 ], [ 111.752930, 10.141932 ], [ 110.170898, 9.449062 ], [ 108.764648, 10.487812 ], [ 108.984375, 12.254128 ], [ 110.566406, 12.940322 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82641ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.877930, 14.519780 ], [ 96.416016, 13.496473 ], [ 96.284180, 11.695273 ], [ 94.614258, 10.919618 ], [ 93.120117, 11.910354 ], [ 93.208008, 13.710035 ], [ 94.877930, 14.519780 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.723633, 17.056785 ], [ 98.261719, 16.045813 ], [ 98.085938, 14.264383 ], [ 96.416016, 13.496473 ], [ 94.877930, 14.519780 ], [ 95.009766, 16.299051 ], [ 96.723633, 17.056785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.471680, 17.266728 ], [ 95.009766, 16.299051 ], [ 94.877930, 14.519780 ], [ 93.208008, 13.710035 ], [ 91.669922, 14.689881 ], [ 91.801758, 16.467695 ], [ 93.471680, 17.266728 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.777344, 19.269665 ], [ 103.315430, 18.229351 ], [ 103.139648, 16.467695 ], [ 101.469727, 15.749963 ], [ 99.931641, 16.804541 ], [ 100.107422, 18.562947 ], [ 101.777344, 19.269665 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82651ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.810547, 8.624472 ], [ 102.260742, 7.580328 ], [ 102.128906, 5.790897 ], [ 100.502930, 5.047171 ], [ 99.008789, 6.053161 ], [ 99.140625, 7.841615 ], [ 100.810547, 8.624472 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826507fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 5.790897 ], [ 103.579102, 4.784469 ], [ 103.403320, 3.030812 ], [ 101.777344, 2.284551 ], [ 100.327148, 3.250209 ], [ 100.502930, 5.047171 ], [ 102.128906, 5.790897 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.931641, 16.804541 ], [ 101.469727, 15.749963 ], [ 101.293945, 13.966054 ], [ 99.624023, 13.239945 ], [ 98.085938, 14.264383 ], [ 98.261719, 16.045813 ], [ 99.931641, 16.804541 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8264d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.021484, 19.973349 ], [ 93.603516, 19.020577 ], [ 93.471680, 17.266728 ], [ 91.801758, 16.467695 ], [ 90.263672, 17.434511 ], [ 90.351562, 19.186678 ], [ 92.021484, 19.973349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826487fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.569336, 19.559790 ], [ 100.107422, 18.562947 ], [ 99.931641, 16.804541 ], [ 98.261719, 16.045813 ], [ 96.723633, 17.056785 ], [ 96.855469, 18.812718 ], [ 98.569336, 19.559790 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8265affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.612305, 11.178402 ], [ 104.106445, 10.098670 ], [ 103.930664, 8.320212 ], [ 102.260742, 7.580328 ], [ 100.810547, 8.624472 ], [ 100.942383, 10.401378 ], [ 102.612305, 11.178402 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826587fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.458008, 13.667338 ], [ 105.908203, 12.597455 ], [ 105.732422, 10.833306 ], [ 104.106445, 10.098670 ], [ 102.612305, 11.178402 ], [ 102.788086, 12.940322 ], [ 104.458008, 13.667338 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82658ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.293945, 13.966054 ], [ 102.788086, 12.940322 ], [ 102.612305, 11.178402 ], [ 100.942383, 10.401378 ], [ 99.448242, 11.436955 ], [ 99.624023, 13.239945 ], [ 101.293945, 13.966054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8265b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.534180, 13.325485 ], [ 108.984375, 12.254128 ], [ 108.764648, 10.487812 ], [ 107.182617, 9.795678 ], [ 105.732422, 10.833306 ], [ 105.908203, 12.597455 ], [ 107.534180, 13.325485 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82642ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.482422, 9.102097 ], [ 96.020508, 8.102739 ], [ 95.888672, 6.315299 ], [ 94.262695, 5.528511 ], [ 92.768555, 6.533645 ], [ 92.856445, 8.320212 ], [ 94.482422, 9.102097 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826427fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.646484, 8.885072 ], [ 99.140625, 7.841615 ], [ 99.008789, 6.053161 ], [ 97.382812, 5.309766 ], [ 95.888672, 6.315299 ], [ 96.020508, 8.102739 ], [ 97.646484, 8.885072 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826557fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.888672, 6.315299 ], [ 97.382812, 5.309766 ], [ 97.250977, 3.513421 ], [ 95.625000, 2.723583 ], [ 94.130859, 3.732708 ], [ 94.262695, 5.528511 ], [ 95.888672, 6.315299 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82655ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.768555, 6.533645 ], [ 94.262695, 5.528511 ], [ 94.130859, 3.732708 ], [ 92.504883, 2.943041 ], [ 91.010742, 3.951941 ], [ 91.142578, 5.747174 ], [ 92.768555, 6.533645 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826547fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 3.732708 ], [ 95.625000, 2.723583 ], [ 95.493164, 0.966751 ], [ 93.867188, 0.219726 ], [ 92.416992, 1.186439 ], [ 92.504883, 2.943041 ], [ 94.130859, 3.732708 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82650ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.008789, 6.053161 ], [ 100.502930, 5.047171 ], [ 100.327148, 3.250209 ], [ 98.701172, 2.504085 ], [ 97.250977, 3.513421 ], [ 97.382812, 5.309766 ], [ 99.008789, 6.053161 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82416ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.985352, 18.937464 ], [ 106.479492, 17.853290 ], [ 106.303711, 16.130262 ], [ 104.633789, 15.411319 ], [ 103.139648, 16.467695 ], [ 103.315430, 18.229351 ], [ 104.985352, 18.937464 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824147fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 21.289374 ], [ 108.325195, 20.220966 ], [ 108.149414, 18.521283 ], [ 106.479492, 17.853290 ], [ 104.985352, 18.937464 ], [ 105.205078, 20.632784 ], [ 106.875000, 21.289374 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826597fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.303711, 16.130262 ], [ 107.753906, 15.072124 ], [ 107.534180, 13.325485 ], [ 105.908203, 12.597455 ], [ 104.458008, 13.667338 ], [ 104.633789, 15.411319 ], [ 106.303711, 16.130262 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82414ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.666992, 21.698265 ], [ 105.205078, 20.632784 ], [ 104.985352, 18.937464 ], [ 103.315430, 18.229351 ], [ 101.777344, 19.269665 ], [ 101.953125, 21.002471 ], [ 103.666992, 21.698265 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824167fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.149414, 18.521283 ], [ 109.599609, 17.434511 ], [ 109.379883, 15.749963 ], [ 107.753906, 15.072124 ], [ 106.303711, 16.130262 ], [ 106.479492, 17.853290 ], [ 108.149414, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82659ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.139648, 16.467695 ], [ 104.633789, 15.411319 ], [ 104.458008, 13.667338 ], [ 102.788086, 12.940322 ], [ 101.293945, 13.966054 ], [ 101.469727, 15.749963 ], [ 103.139648, 16.467695 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824177fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.995117, 20.838278 ], [ 111.401367, 19.766704 ], [ 111.225586, 18.062312 ], [ 109.599609, 17.434511 ], [ 108.149414, 18.521283 ], [ 108.325195, 20.220966 ], [ 109.995117, 20.838278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826937fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.379883, 15.749963 ], [ 110.786133, 14.647368 ], [ 110.566406, 12.940322 ], [ 108.984375, 12.254128 ], [ 107.534180, 13.325485 ], [ 107.753906, 15.072124 ], [ 109.379883, 15.749963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.930664, 8.320212 ], [ 105.336914, 7.318882 ], [ 105.161133, 5.528511 ], [ 103.579102, 4.784469 ], [ 102.128906, 5.790897 ], [ 102.260742, 7.580328 ], [ 103.930664, 8.320212 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826997fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.193359, 5.266008 ], [ 109.555664, 4.258768 ], [ 109.379883, 2.504085 ], [ 107.797852, 1.757537 ], [ 106.391602, 2.767478 ], [ 106.611328, 4.521666 ], [ 108.193359, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8265a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 10.833306 ], [ 107.182617, 9.795678 ], [ 106.962891, 8.015716 ], [ 105.336914, 7.318882 ], [ 103.930664, 8.320212 ], [ 104.106445, 10.098670 ], [ 105.732422, 10.833306 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8269b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.962891, 8.015716 ], [ 108.369141, 7.013668 ], [ 108.193359, 5.266008 ], [ 106.611328, 4.521666 ], [ 105.161133, 5.528511 ], [ 105.336914, 7.318882 ], [ 106.962891, 8.015716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826987fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.951172, 7.710992 ], [ 111.313477, 6.708254 ], [ 111.137695, 4.959615 ], [ 109.555664, 4.258768 ], [ 108.193359, 5.266008 ], [ 108.369141, 7.013668 ], [ 109.951172, 7.710992 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826537fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.161133, 5.528511 ], [ 106.611328, 4.521666 ], [ 106.391602, 2.767478 ], [ 104.809570, 2.021065 ], [ 103.403320, 3.030812 ], [ 103.579102, 4.784469 ], [ 105.161133, 5.528511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8269a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.764648, 10.487812 ], [ 110.170898, 9.449062 ], [ 109.951172, 7.710992 ], [ 108.369141, 7.013668 ], [ 106.962891, 8.015716 ], [ 107.182617, 9.795678 ], [ 108.764648, 10.487812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82699ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.137695, 4.959615 ], [ 112.456055, 3.951941 ], [ 112.236328, 2.284551 ], [ 110.742188, 1.537901 ], [ 109.379883, 2.504085 ], [ 109.555664, 4.258768 ], [ 111.137695, 4.959615 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.461914, 32.138409 ], [ 134.912109, 31.278551 ], [ 134.604492, 29.802518 ], [ 132.846680, 29.267233 ], [ 131.396484, 30.145127 ], [ 131.704102, 31.578535 ], [ 133.461914, 32.138409 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82319ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.839844, 38.169114 ], [ 117.246094, 37.160317 ], [ 116.982422, 35.853440 ], [ 115.356445, 35.532226 ], [ 113.906250, 36.527295 ], [ 114.125977, 37.857507 ], [ 115.839844, 38.169114 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.111328, 34.524661 ], [ 130.561523, 33.760882 ], [ 130.253906, 32.398516 ], [ 128.540039, 31.802893 ], [ 127.089844, 32.546813 ], [ 127.397461, 33.943360 ], [ 129.111328, 34.524661 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.222656, 28.381735 ], [ 124.584961, 27.566721 ], [ 124.321289, 26.076521 ], [ 122.695312, 25.403585 ], [ 121.333008, 26.194877 ], [ 121.596680, 27.683528 ], [ 123.222656, 28.381735 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823017fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.717773, 38.925229 ], [ 122.036133, 37.892196 ], [ 121.772461, 36.633162 ], [ 120.190430, 36.385913 ], [ 118.872070, 37.439974 ], [ 119.135742, 38.685510 ], [ 120.717773, 38.925229 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823187fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.664062, 40.680638 ], [ 116.586914, 39.537940 ], [ 115.839844, 38.169114 ], [ 114.125977, 37.857507 ], [ 113.159180, 38.959409 ], [ 113.906250, 40.413496 ], [ 115.664062, 40.680638 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.013672, 32.657876 ], [ 125.419922, 31.914868 ], [ 125.156250, 30.524413 ], [ 123.486328, 29.840644 ], [ 122.124023, 30.600094 ], [ 122.387695, 31.989442 ], [ 124.013672, 32.657876 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82308ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.915039, 34.705493 ], [ 124.277344, 34.016242 ], [ 124.013672, 32.657876 ], [ 122.387695, 31.989442 ], [ 121.025391, 32.694866 ], [ 121.245117, 34.016242 ], [ 122.915039, 34.705493 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.982422, 35.853440 ], [ 118.344727, 34.813803 ], [ 118.125000, 33.431441 ], [ 116.499023, 33.100745 ], [ 115.092773, 34.161818 ], [ 115.356445, 35.532226 ], [ 116.982422, 35.853440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.319336, 34.343436 ], [ 133.769531, 33.504759 ], [ 133.461914, 32.138409 ], [ 131.704102, 31.578535 ], [ 130.253906, 32.398516 ], [ 130.561523, 33.760882 ], [ 132.319336, 34.343436 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824baffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.321289, 26.076521 ], [ 125.727539, 25.204941 ], [ 125.463867, 23.644524 ], [ 123.793945, 22.958393 ], [ 122.431641, 23.845650 ], [ 122.695312, 25.403585 ], [ 124.321289, 26.076521 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.991211, 34.669359 ], [ 127.397461, 33.943360 ], [ 127.089844, 32.546813 ], [ 125.419922, 31.914868 ], [ 124.013672, 32.657876 ], [ 124.277344, 34.016242 ], [ 125.991211, 34.669359 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82301ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.706055, 38.513788 ], [ 125.112305, 37.892196 ], [ 124.848633, 36.633162 ], [ 123.178711, 35.995785 ], [ 121.772461, 36.633162 ], [ 122.036133, 37.892196 ], [ 123.706055, 38.513788 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.253906, 32.398516 ], [ 131.704102, 31.578535 ], [ 131.396484, 30.145127 ], [ 129.682617, 29.535230 ], [ 128.232422, 30.372875 ], [ 128.540039, 31.802893 ], [ 130.253906, 32.398516 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 30.524413 ], [ 126.562500, 29.726222 ], [ 126.254883, 28.265682 ], [ 124.584961, 27.566721 ], [ 123.222656, 28.381735 ], [ 123.486328, 29.840644 ], [ 125.156250, 30.524413 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.089844, 32.546813 ], [ 128.540039, 31.802893 ], [ 128.232422, 30.372875 ], [ 126.562500, 29.726222 ], [ 125.156250, 30.524413 ], [ 125.419922, 31.914868 ], [ 127.089844, 32.546813 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.872070, 37.439974 ], [ 120.190430, 36.385913 ], [ 119.970703, 35.101934 ], [ 118.344727, 34.813803 ], [ 116.982422, 35.853440 ], [ 117.246094, 37.160317 ], [ 118.872070, 37.439974 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82318ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.300781, 39.808536 ], [ 119.135742, 38.685510 ], [ 118.872070, 37.439974 ], [ 117.246094, 37.160317 ], [ 115.839844, 38.169114 ], [ 116.586914, 39.537940 ], [ 118.300781, 39.808536 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823097fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125000, 33.431441 ], [ 119.443359, 32.361403 ], [ 119.223633, 30.977609 ], [ 117.641602, 30.600094 ], [ 116.279297, 31.690782 ], [ 116.499023, 33.100745 ], [ 118.125000, 33.431441 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82302ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.672852, 40.813809 ], [ 126.166992, 40.212441 ], [ 126.342773, 38.754083 ], [ 125.112305, 37.892196 ], [ 123.706055, 38.513788 ], [ 123.442383, 39.943436 ], [ 124.672852, 40.813809 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.848633, 36.633162 ], [ 126.254883, 35.960223 ], [ 125.991211, 34.669359 ], [ 124.277344, 34.016242 ], [ 122.915039, 34.705493 ], [ 123.178711, 35.995785 ], [ 124.848633, 36.633162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82309ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.025391, 32.694866 ], [ 122.387695, 31.989442 ], [ 122.124023, 30.600094 ], [ 120.498047, 29.878755 ], [ 119.223633, 30.977609 ], [ 119.443359, 32.361403 ], [ 121.025391, 32.694866 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.772461, 36.633162 ], [ 123.178711, 35.995785 ], [ 122.915039, 34.705493 ], [ 121.245117, 34.016242 ], [ 119.970703, 35.101934 ], [ 120.190430, 36.385913 ], [ 121.772461, 36.633162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8240b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.092773, 34.161818 ], [ 116.499023, 33.100745 ], [ 116.279297, 31.690782 ], [ 114.609375, 31.278551 ], [ 113.203125, 32.324276 ], [ 113.422852, 33.760882 ], [ 115.092773, 34.161818 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823007fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.596680, 40.212441 ], [ 123.442383, 39.943436 ], [ 123.706055, 38.513788 ], [ 122.036133, 37.892196 ], [ 120.717773, 38.925229 ], [ 121.596680, 40.212441 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823087fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.970703, 35.101934 ], [ 121.245117, 34.016242 ], [ 121.025391, 32.694866 ], [ 119.443359, 32.361403 ], [ 118.125000, 33.431441 ], [ 118.344727, 34.813803 ], [ 119.970703, 35.101934 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82418ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.389648, 29.802518 ], [ 115.795898, 28.729130 ], [ 115.532227, 27.215556 ], [ 113.950195, 26.784847 ], [ 112.500000, 27.839076 ], [ 112.719727, 29.382175 ], [ 114.389648, 29.802518 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8241b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.234375, 28.459033 ], [ 121.596680, 27.683528 ], [ 121.333008, 26.194877 ], [ 119.750977, 25.482951 ], [ 118.476562, 26.588527 ], [ 118.696289, 28.071980 ], [ 120.234375, 28.459033 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824197fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.223633, 30.977609 ], [ 120.498047, 29.878755 ], [ 120.234375, 28.459033 ], [ 118.696289, 28.071980 ], [ 117.377930, 29.152161 ], [ 117.641602, 30.600094 ], [ 119.223633, 30.977609 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8241a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.476562, 26.588527 ], [ 119.750977, 25.482951 ], [ 119.531250, 23.966176 ], [ 117.993164, 23.523700 ], [ 116.674805, 24.607069 ], [ 116.894531, 26.155438 ], [ 118.476562, 26.588527 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824187fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.377930, 29.152161 ], [ 118.696289, 28.071980 ], [ 118.476562, 26.588527 ], [ 116.894531, 26.155438 ], [ 115.532227, 27.215556 ], [ 115.795898, 28.729130 ], [ 117.377930, 29.152161 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82419ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.279297, 31.690782 ], [ 117.641602, 30.600094 ], [ 117.377930, 29.152161 ], [ 115.795898, 28.729130 ], [ 114.389648, 29.802518 ], [ 114.609375, 31.278551 ], [ 116.279297, 31.690782 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8241affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.532227, 27.215556 ], [ 116.894531, 26.155438 ], [ 116.674805, 24.607069 ], [ 115.092773, 24.126702 ], [ 113.686523, 25.204941 ], [ 113.950195, 26.784847 ], [ 115.532227, 27.215556 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.124023, 30.600094 ], [ 123.486328, 29.840644 ], [ 123.222656, 28.381735 ], [ 121.596680, 27.683528 ], [ 120.234375, 28.459033 ], [ 120.498047, 29.878755 ], [ 122.124023, 30.600094 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ba7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.333008, 26.194877 ], [ 122.695312, 25.403585 ], [ 122.431641, 23.845650 ], [ 120.849609, 23.120154 ], [ 119.531250, 23.966176 ], [ 119.750977, 25.482951 ], [ 121.333008, 26.194877 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.099609, 38.993572 ], [ 133.637695, 38.238180 ], [ 133.681641, 36.668419 ], [ 132.231445, 35.889050 ], [ 130.781250, 36.668419 ], [ 130.649414, 38.203655 ], [ 132.099609, 38.993572 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 36.562600 ], [ 129.418945, 35.853440 ], [ 129.111328, 34.524661 ], [ 127.397461, 33.943360 ], [ 125.991211, 34.669359 ], [ 126.254883, 35.960223 ], [ 127.968750, 36.562600 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.781250, 36.668419 ], [ 132.231445, 35.889050 ], [ 132.319336, 34.343436 ], [ 130.561523, 33.760882 ], [ 129.111328, 34.524661 ], [ 129.418945, 35.853440 ], [ 130.781250, 36.668419 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.155273, 38.891033 ], [ 130.649414, 38.203655 ], [ 130.781250, 36.668419 ], [ 129.418945, 35.853440 ], [ 127.968750, 36.562600 ], [ 127.792969, 38.065392 ], [ 129.155273, 38.891033 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8230e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.342773, 38.754083 ], [ 127.792969, 38.065392 ], [ 127.968750, 36.562600 ], [ 126.254883, 35.960223 ], [ 124.848633, 36.633162 ], [ 125.112305, 37.892196 ], [ 126.342773, 38.754083 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.232422, 30.372875 ], [ 129.682617, 29.535230 ], [ 129.375000, 28.033198 ], [ 127.661133, 27.410786 ], [ 126.254883, 28.265682 ], [ 126.562500, 29.726222 ], [ 128.232422, 30.372875 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 28.033198 ], [ 130.825195, 27.137368 ], [ 130.517578, 25.601902 ], [ 128.803711, 24.966140 ], [ 127.397461, 25.878994 ], [ 127.661133, 27.410786 ], [ 129.375000, 28.033198 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.517578, 25.601902 ], [ 131.923828, 24.686952 ], [ 131.660156, 23.079732 ], [ 129.946289, 22.471955 ], [ 128.540039, 23.402765 ], [ 128.803711, 24.966140 ], [ 130.517578, 25.601902 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.539062, 27.761330 ], [ 133.989258, 26.824071 ], [ 133.681641, 25.284438 ], [ 131.923828, 24.686952 ], [ 130.517578, 25.601902 ], [ 130.825195, 27.137368 ], [ 132.539062, 27.761330 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.254883, 28.265682 ], [ 127.661133, 27.410786 ], [ 127.397461, 25.878994 ], [ 125.727539, 25.204941 ], [ 124.321289, 26.076521 ], [ 124.584961, 27.566721 ], [ 126.254883, 28.265682 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.397461, 25.878994 ], [ 128.803711, 24.966140 ], [ 128.540039, 23.402765 ], [ 126.826172, 22.755921 ], [ 125.463867, 23.644524 ], [ 125.727539, 25.204941 ], [ 127.397461, 25.878994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.396484, 30.145127 ], [ 132.846680, 29.267233 ], [ 132.539062, 27.761330 ], [ 130.825195, 27.137368 ], [ 129.375000, 28.033198 ], [ 129.682617, 29.535230 ], [ 131.396484, 30.145127 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826967fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.784180, 19.269665 ], [ 120.102539, 18.354526 ], [ 119.882812, 16.720385 ], [ 118.344727, 16.003576 ], [ 117.070312, 17.098792 ], [ 117.290039, 18.729502 ], [ 118.784180, 19.269665 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826827fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367188, 12.125264 ], [ 117.641602, 11.049038 ], [ 117.421875, 9.405710 ], [ 115.927734, 8.754795 ], [ 114.609375, 9.752370 ], [ 114.829102, 11.480025 ], [ 116.367188, 12.125264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82686ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.826172, 13.453737 ], [ 128.232422, 12.382928 ], [ 127.924805, 10.660608 ], [ 126.298828, 9.968851 ], [ 124.936523, 11.049038 ], [ 125.200195, 12.768946 ], [ 126.826172, 13.453737 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.530273, 21.371244 ], [ 124.892578, 20.468189 ], [ 124.628906, 18.812718 ], [ 123.002930, 18.145852 ], [ 121.684570, 19.062118 ], [ 121.948242, 20.673905 ], [ 123.530273, 21.371244 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82696ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.684570, 19.062118 ], [ 123.002930, 18.145852 ], [ 122.783203, 16.467695 ], [ 121.201172, 15.792254 ], [ 119.882812, 16.720385 ], [ 120.102539, 18.354526 ], [ 121.684570, 19.062118 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826977fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.070312, 17.098792 ], [ 118.344727, 16.003576 ], [ 118.081055, 14.392118 ], [ 116.586914, 13.795406 ], [ 115.312500, 14.859850 ], [ 115.532227, 16.509833 ], [ 117.070312, 17.098792 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826957fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.081055, 14.392118 ], [ 119.399414, 13.410994 ], [ 119.135742, 11.738302 ], [ 117.641602, 11.049038 ], [ 116.367188, 12.125264 ], [ 116.586914, 13.795406 ], [ 118.081055, 14.392118 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.145508, 5.878332 ], [ 125.507812, 4.784469 ], [ 125.244141, 3.030812 ], [ 123.662109, 2.416276 ], [ 122.343750, 3.513421 ], [ 122.563477, 5.222247 ], [ 124.145508, 5.878332 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827307fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.978516, 12.597455 ], [ 134.384766, 11.480025 ], [ 134.077148, 9.752370 ], [ 132.407227, 9.102097 ], [ 131.000977, 10.228437 ], [ 131.308594, 11.953349 ], [ 132.978516, 12.597455 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824127fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.971680, 19.808054 ], [ 117.290039, 18.729502 ], [ 117.070312, 17.098792 ], [ 115.532227, 16.509833 ], [ 114.169922, 17.602139 ], [ 114.389648, 19.269665 ], [ 115.971680, 19.808054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826947fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.882812, 16.720385 ], [ 121.201172, 15.792254 ], [ 120.937500, 14.093957 ], [ 119.399414, 13.410994 ], [ 118.081055, 14.392118 ], [ 118.344727, 16.003576 ], [ 119.882812, 16.720385 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826857fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.090820, 8.667918 ], [ 124.409180, 7.580328 ], [ 124.145508, 5.878332 ], [ 122.563477, 5.222247 ], [ 121.289062, 6.271618 ], [ 121.508789, 8.015716 ], [ 123.090820, 8.667918 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82694ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.783203, 16.467695 ], [ 124.101562, 15.496032 ], [ 123.837891, 13.795406 ], [ 122.255859, 13.111580 ], [ 120.937500, 14.093957 ], [ 121.201172, 15.792254 ], [ 122.783203, 16.467695 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826877fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 11.436955 ], [ 123.354492, 10.401378 ], [ 123.090820, 8.667918 ], [ 121.508789, 8.015716 ], [ 120.190430, 9.058702 ], [ 120.454102, 10.746969 ], [ 121.992188, 11.436955 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82695ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 14.093957 ], [ 122.255859, 13.111580 ], [ 121.992188, 11.436955 ], [ 120.454102, 10.746969 ], [ 119.135742, 11.738302 ], [ 119.399414, 13.410994 ], [ 120.937500, 14.093957 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826847fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.936523, 11.049038 ], [ 126.298828, 9.968851 ], [ 126.035156, 8.233237 ], [ 124.409180, 7.580328 ], [ 123.090820, 8.667918 ], [ 123.354492, 10.401378 ], [ 124.936523, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824137fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.773438, 21.943046 ], [ 119.047852, 20.838278 ], [ 118.784180, 19.269665 ], [ 117.290039, 18.729502 ], [ 115.971680, 19.808054 ], [ 116.191406, 21.412162 ], [ 117.773438, 21.943046 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827337fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.902344, 13.068777 ], [ 131.308594, 11.953349 ], [ 131.000977, 10.228437 ], [ 129.331055, 9.579084 ], [ 127.924805, 10.660608 ], [ 128.232422, 12.382928 ], [ 129.902344, 13.068777 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82682ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.135742, 11.738302 ], [ 120.454102, 10.746969 ], [ 120.190430, 9.058702 ], [ 118.696289, 8.363693 ], [ 117.421875, 9.405710 ], [ 117.641602, 11.049038 ], [ 119.135742, 11.738302 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ab7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.628906, 18.812718 ], [ 126.035156, 17.853290 ], [ 125.727539, 16.172473 ], [ 124.101562, 15.496032 ], [ 122.783203, 16.467695 ], [ 123.002930, 18.145852 ], [ 124.628906, 18.812718 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826867fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.837891, 13.795406 ], [ 125.200195, 12.768946 ], [ 124.936523, 11.049038 ], [ 123.354492, 10.401378 ], [ 121.992188, 11.436955 ], [ 122.255859, 13.111580 ], [ 123.837891, 13.795406 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82690ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 14.859850 ], [ 116.586914, 13.795406 ], [ 116.367188, 12.125264 ], [ 114.829102, 11.480025 ], [ 113.510742, 12.511665 ], [ 113.730469, 14.221789 ], [ 115.312500, 14.859850 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824b97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.585938, 21.575719 ], [ 121.948242, 20.673905 ], [ 121.684570, 19.062118 ], [ 120.102539, 18.354526 ], [ 118.784180, 19.269665 ], [ 119.047852, 20.838278 ], [ 120.585938, 21.575719 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826837fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.609375, 9.752370 ], [ 115.927734, 8.754795 ], [ 115.708008, 7.057282 ], [ 114.213867, 6.358975 ], [ 112.895508, 7.406048 ], [ 113.115234, 9.102097 ], [ 114.609375, 9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82681ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.476562, 6.708254 ], [ 119.750977, 5.659719 ], [ 119.487305, 3.951941 ], [ 117.993164, 3.337954 ], [ 116.762695, 4.390229 ], [ 116.982422, 6.053161 ], [ 118.476562, 6.708254 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826807fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, 9.405710 ], [ 118.696289, 8.363693 ], [ 118.476562, 6.708254 ], [ 116.982422, 6.053161 ], [ 115.708008, 7.057282 ], [ 115.927734, 8.754795 ], [ 117.421875, 9.405710 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.487305, 3.951941 ], [ 120.761719, 2.855263 ], [ 120.541992, 1.186439 ], [ 119.047852, 0.571280 ], [ 117.773438, 1.669686 ], [ 117.993164, 3.337954 ], [ 119.487305, 3.951941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826817fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.708008, 7.057282 ], [ 116.982422, 6.053161 ], [ 116.762695, 4.390229 ], [ 115.268555, 3.688855 ], [ 113.994141, 4.653080 ], [ 114.213867, 6.358975 ], [ 115.708008, 7.057282 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.289062, 6.271618 ], [ 122.563477, 5.222247 ], [ 122.343750, 3.513421 ], [ 120.761719, 2.855263 ], [ 119.487305, 3.951941 ], [ 119.750977, 5.659719 ], [ 121.289062, 6.271618 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.762695, 4.390229 ], [ 117.993164, 3.337954 ], [ 117.773438, 1.669686 ], [ 116.323242, 1.054628 ], [ 115.048828, 2.021065 ], [ 115.268555, 3.688855 ], [ 116.762695, 4.390229 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82680ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.190430, 9.058702 ], [ 121.508789, 8.015716 ], [ 121.289062, 6.271618 ], [ 119.750977, 5.659719 ], [ 118.476562, 6.708254 ], [ 118.696289, 8.363693 ], [ 120.190430, 9.058702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8268c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.343750, 3.513421 ], [ 123.662109, 2.416276 ], [ 123.398438, 0.659165 ], [ 121.816406, 0.087891 ], [ 120.541992, 1.186439 ], [ 120.761719, 2.855263 ], [ 122.343750, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824aa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, 21.125498 ], [ 127.968750, 20.179724 ], [ 127.661133, 18.521283 ], [ 126.035156, 17.853290 ], [ 124.628906, 18.812718 ], [ 124.892578, 20.468189 ], [ 126.562500, 21.125498 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.737305, 18.187607 ], [ 132.187500, 17.140790 ], [ 131.879883, 15.411319 ], [ 130.166016, 14.774883 ], [ 128.803711, 15.834536 ], [ 129.067383, 17.518344 ], [ 130.737305, 18.187607 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.661133, 18.521283 ], [ 129.067383, 17.518344 ], [ 128.803711, 15.834536 ], [ 127.133789, 15.156974 ], [ 125.727539, 16.172473 ], [ 126.035156, 17.853290 ], [ 127.661133, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.803711, 15.834536 ], [ 130.166016, 14.774883 ], [ 129.902344, 13.068777 ], [ 128.232422, 12.382928 ], [ 126.826172, 13.453737 ], [ 127.133789, 15.156974 ], [ 128.803711, 15.834536 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824aaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.638672, 20.838278 ], [ 131.044922, 19.849394 ], [ 130.737305, 18.187607 ], [ 129.067383, 17.518344 ], [ 127.661133, 18.521283 ], [ 127.968750, 20.179724 ], [ 129.638672, 20.838278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.727539, 16.172473 ], [ 127.133789, 15.156974 ], [ 126.826172, 13.453737 ], [ 125.200195, 12.768946 ], [ 123.837891, 13.795406 ], [ 124.101562, 15.496032 ], [ 125.727539, 16.172473 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824af7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.758789, 20.468189 ], [ 134.165039, 19.435514 ], [ 133.901367, 17.769612 ], [ 132.187500, 17.140790 ], [ 130.737305, 18.187607 ], [ 131.044922, 19.849394 ], [ 132.758789, 20.468189 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827327fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.879883, 15.411319 ], [ 133.286133, 14.349548 ], [ 132.978516, 12.597455 ], [ 131.308594, 11.953349 ], [ 129.902344, 13.068777 ], [ 130.166016, 14.774883 ], [ 131.879883, 15.411319 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8273affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.099609, 7.318882 ], [ 133.505859, 6.184246 ], [ 133.198242, 4.434044 ], [ 131.528320, 3.776559 ], [ 130.122070, 4.915833 ], [ 130.429688, 6.708254 ], [ 132.099609, 7.318882 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82684ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.924805, 10.660608 ], [ 129.331055, 9.579084 ], [ 129.023438, 7.798079 ], [ 127.397461, 7.144499 ], [ 126.035156, 8.233237 ], [ 126.298828, 9.968851 ], [ 127.924805, 10.660608 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827317fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.000977, 10.228437 ], [ 132.407227, 9.102097 ], [ 132.099609, 7.318882 ], [ 130.429688, 6.708254 ], [ 129.023438, 7.798079 ], [ 129.331055, 9.579084 ], [ 131.000977, 10.228437 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82685ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.035156, 8.233237 ], [ 127.397461, 7.144499 ], [ 127.133789, 5.397273 ], [ 125.507812, 4.784469 ], [ 124.145508, 5.878332 ], [ 124.409180, 7.580328 ], [ 126.035156, 8.233237 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827387fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.122070, 4.915833 ], [ 131.528320, 3.776559 ], [ 131.220703, 2.021065 ], [ 129.594727, 1.406109 ], [ 128.232422, 2.547988 ], [ 128.496094, 4.302591 ], [ 130.122070, 4.915833 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8273a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.023438, 7.798079 ], [ 130.429688, 6.708254 ], [ 130.122070, 4.915833 ], [ 128.496094, 4.302591 ], [ 127.133789, 5.397273 ], [ 127.397461, 7.144499 ], [ 129.023438, 7.798079 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8273b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.133789, 5.397273 ], [ 128.496094, 4.302591 ], [ 128.232422, 2.547988 ], [ 126.606445, 1.889306 ], [ 125.244141, 3.030812 ], [ 125.507812, 4.784469 ], [ 127.133789, 5.397273 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82738ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.198242, 4.434044 ], [ 134.604492, 3.294082 ], [ 134.296875, 1.493971 ], [ 132.626953, 0.878872 ], [ 131.220703, 2.021065 ], [ 131.528320, 3.776559 ], [ 133.198242, 4.434044 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821677fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.803711, 57.539417 ], [ 175.385742, 56.218923 ], [ 174.199219, 54.800685 ], [ 171.254883, 54.622978 ], [ 169.409180, 55.875311 ], [ 170.683594, 57.350237 ], [ 173.803711, 57.539417 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82169ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.653320, 47.279229 ], [ 161.455078, 46.073231 ], [ 160.751953, 44.402392 ], [ 158.378906, 43.897892 ], [ 156.621094, 45.089036 ], [ 157.236328, 46.769968 ], [ 159.653320, 47.279229 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821637fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.301758, 57.492214 ], [ 161.499023, 56.389584 ], [ 160.708008, 54.826008 ], [ 157.939453, 54.342149 ], [ 155.742188, 55.379110 ], [ 156.269531, 56.968936 ], [ 159.301758, 57.492214 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82162ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.793945, 58.631217 ], [ 170.683594, 57.350237 ], [ 169.409180, 55.875311 ], [ 166.464844, 55.603178 ], [ 164.531250, 56.776808 ], [ 165.541992, 58.332567 ], [ 168.793945, 58.631217 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.621094, 45.089036 ], [ 158.378906, 43.897892 ], [ 157.807617, 42.195969 ], [ 155.566406, 41.672912 ], [ 153.852539, 42.843751 ], [ 154.335938, 44.527843 ], [ 156.621094, 45.089036 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821607fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, 56.776808 ], [ 166.464844, 55.603178 ], [ 165.498047, 54.085173 ], [ 162.685547, 53.722717 ], [ 160.708008, 54.826008 ], [ 161.499023, 56.389584 ], [ 164.531250, 56.776808 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8217affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.808594, 57.984808 ], [ 156.269531, 56.968936 ], [ 155.742188, 55.379110 ], [ 152.973633, 54.775346 ], [ 150.556641, 55.702355 ], [ 150.864258, 57.326521 ], [ 153.808594, 57.984808 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821617fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.708008, 54.826008 ], [ 162.685547, 53.722717 ], [ 161.894531, 52.133488 ], [ 159.213867, 51.672555 ], [ 157.236328, 52.776186 ], [ 157.939453, 54.342149 ], [ 160.708008, 54.826008 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82049ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 13, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 35, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 35, "tippecanoe:min:GDP_MD": 35, "tippecanoe:max:GDP_MD": 35, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 105.67259, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 105.67259, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_Y": -10.490789, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -10.490789, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:max:LABEL_Y": -10.490789, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 24, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 17, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:sum:NE_ID": 1159320363, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320363, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:max:NE_ID": 1159320363, "tippecanoe:sum:POP_EST": 2387, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 2387, "tippecanoe:min:POP_EST": 2387, "tippecanoe:max:POP_EST": 2387, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": -90, "tippecanoe:sum:WOE_ID_EH": 23424869, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424869, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:max:WOE_ID_EH": 23424869, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": "82178ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.742188, 55.379110 ], [ 157.939453, 54.342149 ], [ 157.236328, 52.776186 ], [ 154.643555, 52.214339 ], [ 152.622070, 53.199452 ], [ 152.973633, 54.775346 ], [ 155.742188, 55.379110 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82146ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.943359, 63.312683 ], [ 145.327148, 62.492028 ], [ 145.327148, 60.780619 ], [ 142.338867, 59.910976 ], [ 139.130859, 60.651647 ], [ 138.735352, 62.329208 ], [ 141.943359, 63.312683 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8217a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.183594, 58.240164 ], [ 150.864258, 57.326521 ], [ 150.556641, 55.702355 ], [ 147.875977, 54.977614 ], [ 145.327148, 55.825973 ], [ 145.327148, 57.444949 ], [ 148.183594, 58.240164 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.236328, 52.776186 ], [ 159.213867, 51.672555 ], [ 158.510742, 50.064192 ], [ 156.005859, 49.553726 ], [ 154.072266, 50.597186 ], [ 154.643555, 52.214339 ], [ 157.236328, 52.776186 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82160ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.409180, 55.875311 ], [ 171.254883, 54.622978 ], [ 170.200195, 53.146770 ], [ 167.387695, 52.882391 ], [ 165.498047, 54.085173 ], [ 166.464844, 55.603178 ], [ 169.409180, 55.875311 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821707fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.478516, 62.995158 ], [ 158.334961, 61.876870 ], [ 157.587891, 60.217991 ], [ 154.291992, 59.623325 ], [ 151.523438, 60.630102 ], [ 151.918945, 62.329208 ], [ 155.478516, 62.995158 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82145ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.470703, 58.240164 ], [ 145.327148, 57.444949 ], [ 145.327148, 55.825973 ], [ 142.778320, 54.977614 ], [ 140.097656, 55.702355 ], [ 139.790039, 57.326521 ], [ 142.470703, 58.240164 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821737fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.754883, 63.312683 ], [ 151.918945, 62.329208 ], [ 151.523438, 60.630102 ], [ 148.359375, 59.910976 ], [ 145.327148, 60.780619 ], [ 145.327148, 62.492028 ], [ 148.754883, 63.312683 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82172ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.180664, 65.238307 ], [ 163.037109, 64.014496 ], [ 161.938477, 62.369996 ], [ 158.334961, 61.876870 ], [ 155.478516, 62.995158 ], [ 156.181641, 64.699105 ], [ 160.180664, 65.238307 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82171ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.587891, 60.217991 ], [ 160.048828, 59.085739 ], [ 159.301758, 57.492214 ], [ 156.269531, 56.968936 ], [ 153.808594, 57.984808 ], [ 154.291992, 59.623325 ], [ 157.587891, 60.217991 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8217b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 55.825973 ], [ 147.875977, 54.977614 ], [ 147.788086, 53.409532 ], [ 145.327148, 52.669720 ], [ 142.910156, 53.409532 ], [ 142.778320, 54.977614 ], [ 145.327148, 55.825973 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82144ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 60.780619 ], [ 148.359375, 59.910976 ], [ 148.183594, 58.240164 ], [ 145.327148, 57.444949 ], [ 142.470703, 58.240164 ], [ 142.338867, 59.910976 ], [ 145.327148, 60.780619 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821687fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.510742, 50.064192 ], [ 160.356445, 48.922499 ], [ 159.653320, 47.279229 ], [ 157.236328, 46.769968 ], [ 155.390625, 47.901614 ], [ 156.005859, 49.553726 ], [ 158.510742, 50.064192 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821447fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.130859, 60.651647 ], [ 142.338867, 59.910976 ], [ 142.470703, 58.240164 ], [ 139.790039, 57.326521 ], [ 136.845703, 57.984808 ], [ 136.362305, 59.623325 ], [ 139.130859, 60.651647 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821727fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 2017, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:max:GDP_MD": 2017, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 125.854679, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 125.854679, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_Y": -8.803705, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -8.803705, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:max:LABEL_Y": -8.803705, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 1159321313, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159321313, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:sum:POP_EST": 1293119, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 1293119, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:max:POP_EST": 1293119, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424968, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424968, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID_EH": 23424968, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424968, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 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": "821717fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.523438, 60.630102 ], [ 154.291992, 59.623325 ], [ 153.808594, 57.984808 ], [ 150.864258, 57.326521 ], [ 148.183594, 58.240164 ], [ 148.359375, 59.910976 ], [ 151.523438, 60.630102 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.800781, 51.041394 ], [ 143.085938, 50.345460 ], [ 142.866211, 48.748945 ], [ 140.800781, 47.931066 ], [ 138.955078, 48.719961 ], [ 138.647461, 50.176898 ], [ 140.800781, 51.041394 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822eaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.536133, 46.225453 ], [ 146.337891, 45.305803 ], [ 146.074219, 43.612217 ], [ 144.052734, 42.908160 ], [ 142.294922, 43.802819 ], [ 142.470703, 45.460131 ], [ 144.536133, 46.225453 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216b7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.072266, 50.597186 ], [ 156.005859, 49.553726 ], [ 155.390625, 47.901614 ], [ 153.017578, 47.309034 ], [ 151.171875, 48.341646 ], [ 151.611328, 49.979488 ], [ 154.072266, 50.597186 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 51.124213 ], [ 147.304688, 50.261254 ], [ 146.953125, 48.603858 ], [ 144.799805, 47.872144 ], [ 142.866211, 48.748945 ], [ 143.085938, 50.345460 ], [ 145.327148, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.097656, 55.702355 ], [ 142.778320, 54.977614 ], [ 142.910156, 53.409532 ], [ 140.581055, 52.562995 ], [ 138.032227, 53.225768 ], [ 137.680664, 54.775346 ], [ 140.097656, 55.702355 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ea7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.491211, 46.012224 ], [ 150.292969, 44.995883 ], [ 149.897461, 43.293200 ], [ 147.832031, 42.617791 ], [ 146.074219, 43.612217 ], [ 146.337891, 45.305803 ], [ 148.491211, 46.012224 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.953125, 48.603858 ], [ 148.842773, 47.665387 ], [ 148.491211, 46.012224 ], [ 146.337891, 45.305803 ], [ 144.536133, 46.225453 ], [ 144.799805, 47.872144 ], [ 146.953125, 48.603858 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.633789, 50.958427 ], [ 151.611328, 49.979488 ], [ 151.171875, 48.341646 ], [ 148.842773, 47.665387 ], [ 146.953125, 48.603858 ], [ 147.304688, 50.261254 ], [ 149.633789, 50.958427 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.910156, 53.409532 ], [ 145.327148, 52.669720 ], [ 145.327148, 51.124213 ], [ 143.085938, 50.345460 ], [ 140.800781, 51.041394 ], [ 140.581055, 52.562995 ], [ 142.910156, 53.409532 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8214c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.032227, 53.225768 ], [ 140.581055, 52.562995 ], [ 140.800781, 51.041394 ], [ 138.647461, 50.176898 ], [ 136.274414, 50.792047 ], [ 135.878906, 52.268157 ], [ 138.032227, 53.225768 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821797fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.788086, 53.409532 ], [ 150.073242, 52.562995 ], [ 149.633789, 50.958427 ], [ 147.304688, 50.261254 ], [ 145.327148, 51.124213 ], [ 145.327148, 52.669720 ], [ 147.788086, 53.409532 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ef7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.668945, 46.316584 ], [ 142.470703, 45.460131 ], [ 142.294922, 43.802819 ], [ 140.405273, 43.036776 ], [ 138.691406, 43.897892 ], [ 138.779297, 45.521744 ], [ 140.668945, 46.316584 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ed7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.955078, 48.719961 ], [ 140.800781, 47.931066 ], [ 140.668945, 46.316584 ], [ 138.779297, 45.521744 ], [ 136.977539, 46.286224 ], [ 137.021484, 47.872144 ], [ 138.955078, 48.719961 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822ec7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.977539, 46.286224 ], [ 138.779297, 45.521744 ], [ 138.691406, 43.897892 ], [ 136.889648, 43.068888 ], [ 135.175781, 43.834527 ], [ 135.175781, 45.429299 ], [ 136.977539, 46.286224 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.866211, 48.748945 ], [ 144.799805, 47.872144 ], [ 144.536133, 46.225453 ], [ 142.470703, 45.460131 ], [ 140.668945, 46.316584 ], [ 140.800781, 47.931066 ], [ 142.866211, 48.748945 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82179ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.622070, 53.199452 ], [ 154.643555, 52.214339 ], [ 154.072266, 50.597186 ], [ 151.611328, 49.979488 ], [ 149.633789, 50.958427 ], [ 150.073242, 52.562995 ], [ 152.622070, 53.199452 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821787fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.556641, 55.702355 ], [ 152.973633, 54.775346 ], [ 152.622070, 53.199452 ], [ 150.073242, 52.562995 ], [ 147.788086, 53.409532 ], [ 147.875977, 54.977614 ], [ 150.556641, 55.702355 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822eb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.171875, 48.341646 ], [ 153.017578, 47.309034 ], [ 152.534180, 45.614037 ], [ 150.292969, 44.995883 ], [ 148.491211, 46.012224 ], [ 148.842773, 47.665387 ], [ 151.171875, 48.341646 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821697fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.390625, 47.901614 ], [ 157.236328, 46.769968 ], [ 156.621094, 45.089036 ], [ 154.335938, 44.527843 ], [ 152.534180, 45.614037 ], [ 153.017578, 47.309034 ], [ 155.390625, 47.901614 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.534180, 45.614037 ], [ 154.335938, 44.527843 ], [ 153.852539, 42.843751 ], [ 151.655273, 42.228517 ], [ 149.897461, 43.293200 ], [ 150.292969, 44.995883 ], [ 152.534180, 45.614037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821747fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 10770, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 10770, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 165.084004, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 165.084004, "tippecanoe:min:LABEL_X": 165.084004, "tippecanoe:max:LABEL_X": 165.084004, "tippecanoe:sum:LABEL_Y": -21.064697, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -21.064697, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:max:LABEL_Y": -21.064697, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 4.6, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 4.6, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 1159320641, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320641, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:max:NE_ID": 1159320641, "tippecanoe:sum:POP_EST": 287800, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 287800, "tippecanoe:min:POP_EST": 287800, "tippecanoe:max:POP_EST": 287800, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424903, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424903, "tippecanoe:min:WOE_ID": 23424903, "tippecanoe:max:WOE_ID": 23424903, "tippecanoe:sum:WOE_ID_EH": 23424903, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424903, "tippecanoe:min:WOE_ID_EH": 23424903, "tippecanoe:max:WOE_ID_EH": 23424903, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 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": "821757fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.958984, 61.459771 ], [ 170.112305, 60.152442 ], [ 168.793945, 58.631217 ], [ 165.541992, 58.332567 ], [ 163.344727, 59.534318 ], [ 164.443359, 61.143235 ], [ 167.958984, 61.459771 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821777fffffffff", "felt:h3_level": 2, "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1589, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1589, "tippecanoe:min:GDP_MD": 1589, "tippecanoe:max:GDP_MD": 1589, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:sum:LABEL_X": 159.170468, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 159.170468, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:max:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_Y": -8.029548, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -8.029548, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 1159321249, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321249, "tippecanoe:min:NE_ID": 1159321249, "tippecanoe:max:NE_ID": 1159321249, "tippecanoe:sum:POP_EST": 669823, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 669823, "tippecanoe:min:POP_EST": 669823, "tippecanoe:max:POP_EST": 669823, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424766, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424766, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:max:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID_EH": 23424766, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424766, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:max:WOE_ID_EH": 23424766, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 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": "82170ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.938477, 62.369996 ], [ 164.443359, 61.143235 ], [ 163.344727, 59.534318 ], [ 160.048828, 59.085739 ], [ 157.587891, 60.217991 ], [ 158.334961, 61.876870 ], [ 161.938477, 62.369996 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821627fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.344727, 59.534318 ], [ 165.541992, 58.332567 ], [ 164.531250, 56.776808 ], [ 161.499023, 56.389584 ], [ 159.301758, 57.492214 ], [ 160.048828, 59.085739 ], [ 163.344727, 59.534318 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82175ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.540039, 60.348696 ], [ 175.297852, 58.972667 ], [ 173.803711, 57.539417 ], [ 170.683594, 57.350237 ], [ 168.793945, 58.631217 ], [ 170.112305, 60.152442 ], [ 173.540039, 60.348696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.200195, 53.146770 ], [ 171.958008, 51.835778 ], [ 170.903320, 50.317408 ], [ 168.222656, 50.064192 ], [ 166.464844, 51.316881 ], [ 167.387695, 52.882391 ], [ 170.200195, 53.146770 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216f7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.464844, 51.316881 ], [ 168.222656, 50.064192 ], [ 167.299805, 48.458352 ], [ 164.707031, 48.136767 ], [ 162.949219, 49.353756 ], [ 163.740234, 50.958427 ], [ 166.464844, 51.316881 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82168ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.949219, 49.353756 ], [ 164.707031, 48.136767 ], [ 163.916016, 46.468133 ], [ 161.455078, 46.073231 ], [ 159.653320, 47.279229 ], [ 160.356445, 48.922499 ], [ 162.949219, 49.353756 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.903320, 50.317408 ], [ 172.529297, 48.980217 ], [ 171.518555, 47.398349 ], [ 168.969727, 47.159840 ], [ 167.299805, 48.458352 ], [ 168.222656, 50.064192 ], [ 170.903320, 50.317408 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.090820, 45.521744 ], [ 169.672852, 44.182204 ], [ 168.793945, 42.520700 ], [ 166.420898, 42.228517 ], [ 164.794922, 43.548548 ], [ 165.585938, 45.213004 ], [ 168.090820, 45.521744 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.166016, 49.124219 ], [ 176.704102, 47.724545 ], [ 175.605469, 46.195042 ], [ 173.100586, 46.012224 ], [ 171.518555, 47.398349 ], [ 172.529297, 48.980217 ], [ 175.166016, 49.124219 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216d7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.299805, 48.458352 ], [ 168.969727, 47.159840 ], [ 168.090820, 45.521744 ], [ 165.585938, 45.213004 ], [ 163.916016, 46.468133 ], [ 164.707031, 48.136767 ], [ 167.299805, 48.458352 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82161ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.498047, 54.085173 ], [ 167.387695, 52.882391 ], [ 166.464844, 51.316881 ], [ 163.740234, 50.958427 ], [ 161.894531, 52.133488 ], [ 162.685547, 53.722717 ], [ 165.498047, 54.085173 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.518555, 47.398349 ], [ 173.100586, 46.012224 ], [ 172.133789, 44.433780 ], [ 169.672852, 44.182204 ], [ 168.090820, 45.521744 ], [ 168.969727, 47.159840 ], [ 171.518555, 47.398349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.894531, 52.133488 ], [ 163.740234, 50.958427 ], [ 162.949219, 49.353756 ], [ 160.356445, 48.922499 ], [ 158.510742, 50.064192 ], [ 159.213867, 51.672555 ], [ 161.894531, 52.133488 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232dffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.916016, 46.468133 ], [ 165.585938, 45.213004 ], [ 164.794922, 43.548548 ], [ 162.421875, 43.133061 ], [ 160.751953, 44.402392 ], [ 161.455078, 46.073231 ], [ 163.916016, 46.468133 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "821657fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.199219, 54.800685 ], [ 175.869141, 53.488046 ], [ 174.726562, 51.998410 ], [ 171.958008, 51.835778 ], [ 170.200195, 53.146770 ], [ 171.254883, 54.622978 ], [ 174.199219, 54.800685 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8216effffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.726562, 51.998410 ], [ 176.308594, 50.652943 ], [ 175.166016, 49.124219 ], [ 172.529297, 48.980217 ], [ 170.903320, 50.317408 ], [ 171.958008, 51.835778 ], [ 174.726562, 51.998410 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82329ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.605469, 46.195042 ], [ 177.055664, 44.746733 ], [ 176.000977, 43.165123 ], [ 173.583984, 43.004647 ], [ 172.133789, 44.433780 ], [ 173.100586, 46.012224 ], [ 175.605469, 46.195042 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82328ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.133789, 44.433780 ], [ 173.583984, 43.004647 ], [ 172.661133, 41.376809 ], [ 170.288086, 41.145570 ], [ 168.793945, 42.520700 ], [ 169.672852, 44.182204 ], [ 172.133789, 44.433780 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827777fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.950195, 10.141932 ], [ 160.136719, 8.971897 ], [ 159.829102, 7.362467 ], [ 158.334961, 6.839170 ], [ 157.104492, 7.972198 ], [ 157.456055, 9.622414 ], [ 158.950195, 10.141932 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.009766, 24.407138 ], [ 141.459961, 23.362429 ], [ 141.152344, 21.739091 ], [ 139.394531, 21.207459 ], [ 137.944336, 22.268764 ], [ 138.295898, 23.845650 ], [ 140.009766, 24.407138 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.624023, 33.504759 ], [ 146.162109, 32.472695 ], [ 145.898438, 30.789037 ], [ 144.228516, 30.183122 ], [ 142.734375, 31.203405 ], [ 142.910156, 32.842674 ], [ 144.624023, 33.504759 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ec7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.128906, 28.033198 ], [ 148.579102, 26.941660 ], [ 148.315430, 25.324167 ], [ 146.645508, 24.806681 ], [ 145.239258, 25.878994 ], [ 145.458984, 27.488781 ], [ 147.128906, 28.033198 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.391602, 24.686952 ], [ 152.753906, 23.523700 ], [ 152.402344, 21.902278 ], [ 150.732422, 21.453069 ], [ 149.414062, 22.593726 ], [ 149.677734, 24.206890 ], [ 151.391602, 24.686952 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.645508, 35.853440 ], [ 148.227539, 34.777716 ], [ 147.919922, 33.063924 ], [ 146.162109, 32.472695 ], [ 144.624023, 33.504759 ], [ 144.843750, 35.173808 ], [ 146.645508, 35.853440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824aeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.944336, 22.268764 ], [ 139.394531, 21.207459 ], [ 139.086914, 19.559790 ], [ 137.329102, 18.979026 ], [ 135.922852, 20.055931 ], [ 136.230469, 21.698265 ], [ 137.944336, 22.268764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.283203, 38.548165 ], [ 146.909180, 37.544577 ], [ 146.645508, 35.853440 ], [ 144.843750, 35.173808 ], [ 143.261719, 36.208823 ], [ 143.437500, 37.857507 ], [ 145.283203, 38.548165 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.960938, 25.204941 ], [ 161.279297, 23.926013 ], [ 160.751953, 22.309426 ], [ 158.950195, 21.943046 ], [ 157.631836, 23.160563 ], [ 158.115234, 24.806681 ], [ 159.960938, 25.204941 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.117188, 35.389050 ], [ 151.699219, 34.234512 ], [ 151.303711, 32.546813 ], [ 149.458008, 31.952162 ], [ 147.919922, 33.063924 ], [ 148.227539, 34.777716 ], [ 150.117188, 35.389050 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 22.309426 ], [ 162.070312, 21.043491 ], [ 161.542969, 19.435514 ], [ 159.785156, 19.103648 ], [ 158.466797, 20.344627 ], [ 158.950195, 21.943046 ], [ 160.751953, 22.309426 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827627fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.027344, 5.178482 ], [ 159.213867, 4.083453 ], [ 158.862305, 2.416276 ], [ 157.368164, 1.845384 ], [ 156.137695, 2.943041 ], [ 156.489258, 4.653080 ], [ 158.027344, 5.178482 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.301758, 17.560247 ], [ 160.532227, 16.341226 ], [ 160.048828, 14.817371 ], [ 158.378906, 14.519780 ], [ 157.192383, 15.665354 ], [ 157.587891, 17.182779 ], [ 159.301758, 17.560247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.173828, 23.845650 ], [ 144.580078, 22.755921 ], [ 144.272461, 21.166484 ], [ 142.558594, 20.673905 ], [ 141.152344, 21.739091 ], [ 141.459961, 23.362429 ], [ 143.173828, 23.845650 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.631836, 23.160563 ], [ 158.950195, 21.943046 ], [ 158.466797, 20.344627 ], [ 156.752930, 19.932041 ], [ 155.434570, 21.125498 ], [ 155.874023, 22.755921 ], [ 157.631836, 23.160563 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.414062, 22.593726 ], [ 150.732422, 21.453069 ], [ 150.424805, 19.890723 ], [ 148.754883, 19.394068 ], [ 147.392578, 20.550509 ], [ 147.700195, 22.146708 ], [ 149.414062, 22.593726 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824edffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.898438, 30.789037 ], [ 147.392578, 29.726222 ], [ 147.128906, 28.033198 ], [ 145.458984, 27.488781 ], [ 144.052734, 28.536275 ], [ 144.228516, 30.183122 ], [ 145.898438, 30.789037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825acffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.333008, 23.322080 ], [ 167.563477, 21.983801 ], [ 166.948242, 20.385825 ], [ 165.102539, 20.097206 ], [ 163.872070, 21.371244 ], [ 164.443359, 22.998852 ], [ 166.333008, 23.322080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824eb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.082031, 28.149503 ], [ 160.488281, 26.902477 ], [ 159.960938, 25.204941 ], [ 158.115234, 24.806681 ], [ 156.708984, 26.037042 ], [ 157.192383, 27.722436 ], [ 159.082031, 28.149503 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.089844, 24.166802 ], [ 173.232422, 22.796439 ], [ 172.485352, 21.207459 ], [ 170.639648, 20.961440 ], [ 169.453125, 22.268764 ], [ 170.156250, 23.885838 ], [ 172.089844, 24.166802 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.524414, 40.946714 ], [ 149.194336, 39.876019 ], [ 148.842773, 38.169114 ], [ 146.909180, 37.544577 ], [ 145.283203, 38.548165 ], [ 145.546875, 40.245992 ], [ 147.524414, 40.946714 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.965820, 36.456636 ], [ 141.503906, 35.496456 ], [ 141.372070, 33.833920 ], [ 139.746094, 33.174342 ], [ 138.251953, 34.089061 ], [ 138.295898, 35.710838 ], [ 139.965820, 36.456636 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82324ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.137695, 37.055177 ], [ 157.719727, 35.817813 ], [ 157.192383, 34.089061 ], [ 155.214844, 33.614619 ], [ 153.632812, 34.777716 ], [ 154.072266, 36.527295 ], [ 156.137695, 37.055177 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823247fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.829102, 36.279707 ], [ 161.367188, 34.994004 ], [ 160.751953, 33.284620 ], [ 158.730469, 32.842674 ], [ 157.192383, 34.089061 ], [ 157.719727, 35.817813 ], [ 159.829102, 36.279707 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.453125, 22.268764 ], [ 170.639648, 20.961440 ], [ 169.936523, 19.352611 ], [ 168.134766, 19.103648 ], [ 166.948242, 20.385825 ], [ 167.563477, 21.983801 ], [ 169.453125, 22.268764 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.337891, 23.241346 ], [ 147.700195, 22.146708 ], [ 147.392578, 20.550509 ], [ 145.678711, 20.055931 ], [ 144.272461, 21.166484 ], [ 144.580078, 22.755921 ], [ 146.337891, 23.241346 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82326ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.192383, 34.089061 ], [ 158.730469, 32.842674 ], [ 158.203125, 31.128199 ], [ 156.225586, 30.675715 ], [ 154.731445, 31.877558 ], [ 155.214844, 33.614619 ], [ 157.192383, 34.089061 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824eeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.239258, 25.878994 ], [ 146.645508, 24.806681 ], [ 146.337891, 23.241346 ], [ 144.580078, 22.755921 ], [ 143.173828, 23.845650 ], [ 143.525391, 25.403585 ], [ 145.239258, 25.878994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.427734, 38.993572 ], [ 140.053711, 38.099983 ], [ 139.965820, 36.456636 ], [ 138.295898, 35.710838 ], [ 136.757812, 36.597889 ], [ 136.801758, 38.203655 ], [ 138.427734, 38.993572 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ea7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.708984, 26.037042 ], [ 158.115234, 24.806681 ], [ 157.631836, 23.160563 ], [ 155.874023, 22.755921 ], [ 154.511719, 23.966176 ], [ 154.907227, 25.601902 ], [ 156.708984, 26.037042 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.632812, 34.777716 ], [ 155.214844, 33.614619 ], [ 154.731445, 31.877558 ], [ 152.841797, 31.353637 ], [ 151.303711, 32.546813 ], [ 151.699219, 34.234512 ], [ 153.632812, 34.777716 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.372070, 33.833920 ], [ 142.910156, 32.842674 ], [ 142.734375, 31.203405 ], [ 141.108398, 30.562261 ], [ 139.658203, 31.541090 ], [ 139.746094, 33.174342 ], [ 141.372070, 33.833920 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.192383, 15.665354 ], [ 158.378906, 14.519780 ], [ 158.071289, 12.897489 ], [ 156.533203, 12.425848 ], [ 155.302734, 13.624633 ], [ 155.610352, 15.241790 ], [ 157.192383, 15.665354 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.071289, 12.897489 ], [ 159.257812, 11.738302 ], [ 158.950195, 10.141932 ], [ 157.456055, 9.622414 ], [ 156.225586, 10.790141 ], [ 156.533203, 12.425848 ], [ 158.071289, 12.897489 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82770ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.104492, 7.972198 ], [ 158.334961, 6.839170 ], [ 158.027344, 5.178482 ], [ 156.489258, 4.653080 ], [ 155.258789, 5.790897 ], [ 155.566406, 7.449624 ], [ 157.104492, 7.972198 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.313477, 18.396230 ], [ 157.587891, 17.182779 ], [ 157.192383, 15.665354 ], [ 155.610352, 15.241790 ], [ 154.335938, 16.383391 ], [ 154.687500, 18.020528 ], [ 156.313477, 18.396230 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.168945, 24.287027 ], [ 164.443359, 22.998852 ], [ 163.872070, 21.371244 ], [ 162.070312, 21.043491 ], [ 160.751953, 22.309426 ], [ 161.279297, 23.926013 ], [ 163.168945, 24.287027 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.846680, 24.766785 ], [ 178.901367, 23.362429 ], [ 178.066406, 21.779905 ], [ 176.220703, 21.616579 ], [ 175.122070, 22.998852 ], [ 175.913086, 24.567108 ], [ 177.846680, 24.766785 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82325ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.862305, 39.266284 ], [ 160.444336, 38.030786 ], [ 159.829102, 36.279707 ], [ 157.719727, 35.817813 ], [ 156.137695, 37.055177 ], [ 156.665039, 38.788345 ], [ 158.862305, 39.266284 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.919922, 33.063924 ], [ 149.458008, 31.952162 ], [ 149.150391, 30.259067 ], [ 147.392578, 29.726222 ], [ 145.898438, 30.789037 ], [ 146.162109, 32.472695 ], [ 147.919922, 33.063924 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e97fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.203125, 31.128199 ], [ 159.609375, 29.878755 ], [ 159.082031, 28.149503 ], [ 157.192383, 27.722436 ], [ 155.786133, 28.960089 ], [ 156.225586, 30.675715 ], [ 158.203125, 31.128199 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.122070, 22.998852 ], [ 176.220703, 21.616579 ], [ 175.429688, 20.055931 ], [ 173.627930, 19.849394 ], [ 172.485352, 21.207459 ], [ 173.232422, 22.796439 ], [ 175.122070, 22.998852 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.511719, 23.966176 ], [ 155.874023, 22.755921 ], [ 155.434570, 21.125498 ], [ 153.720703, 20.715015 ], [ 152.402344, 21.902278 ], [ 152.753906, 23.523700 ], [ 154.511719, 23.966176 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.811523, 38.822591 ], [ 143.437500, 37.857507 ], [ 143.261719, 36.208823 ], [ 141.503906, 35.496456 ], [ 139.965820, 36.456636 ], [ 140.053711, 38.099983 ], [ 141.811523, 38.822591 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824faffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.466797, 20.344627 ], [ 159.785156, 19.103648 ], [ 159.301758, 17.560247 ], [ 157.587891, 17.182779 ], [ 156.313477, 18.396230 ], [ 156.752930, 19.932041 ], [ 158.466797, 20.344627 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.251953, 34.089061 ], [ 139.746094, 33.174342 ], [ 139.658203, 31.541090 ], [ 138.120117, 30.864510 ], [ 136.669922, 31.802893 ], [ 136.713867, 33.394759 ], [ 138.251953, 34.089061 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.303711, 32.546813 ], [ 152.841797, 31.353637 ], [ 152.446289, 29.688053 ], [ 150.644531, 29.152161 ], [ 149.150391, 30.259067 ], [ 149.458008, 31.952162 ], [ 151.303711, 32.546813 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822e67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.757812, 36.597889 ], [ 138.295898, 35.710838 ], [ 138.251953, 34.089061 ], [ 136.713867, 33.394759 ], [ 135.219727, 34.234512 ], [ 135.219727, 35.853440 ], [ 136.757812, 36.597889 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.261719, 36.208823 ], [ 144.843750, 35.173808 ], [ 144.624023, 33.504759 ], [ 142.910156, 32.842674 ], [ 141.372070, 33.833920 ], [ 141.503906, 35.496456 ], [ 143.261719, 36.208823 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.812500, 29.420460 ], [ 139.262695, 28.459033 ], [ 138.911133, 26.941660 ], [ 137.153320, 26.431228 ], [ 135.747070, 27.410786 ], [ 136.054688, 28.883160 ], [ 137.812500, 29.420460 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.119141, 26.431228 ], [ 143.525391, 25.403585 ], [ 143.173828, 23.845650 ], [ 141.459961, 23.362429 ], [ 140.009766, 24.407138 ], [ 140.361328, 25.958045 ], [ 142.119141, 26.431228 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.020508, 28.960089 ], [ 142.426758, 27.955591 ], [ 142.119141, 26.431228 ], [ 140.361328, 25.958045 ], [ 138.911133, 26.941660 ], [ 139.262695, 28.459033 ], [ 141.020508, 28.960089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ecffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.052734, 28.536275 ], [ 145.458984, 27.488781 ], [ 145.239258, 25.878994 ], [ 143.525391, 25.403585 ], [ 142.119141, 26.431228 ], [ 142.426758, 27.955591 ], [ 144.052734, 28.536275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.658203, 31.541090 ], [ 141.108398, 30.562261 ], [ 141.020508, 28.960089 ], [ 139.262695, 28.459033 ], [ 137.812500, 29.420460 ], [ 138.120117, 30.864510 ], [ 139.658203, 31.541090 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824a47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.911133, 26.941660 ], [ 140.361328, 25.958045 ], [ 140.009766, 24.407138 ], [ 138.295898, 23.845650 ], [ 136.845703, 24.886436 ], [ 137.153320, 26.431228 ], [ 138.911133, 26.941660 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.734375, 31.203405 ], [ 144.228516, 30.183122 ], [ 144.052734, 28.536275 ], [ 142.426758, 27.955591 ], [ 141.020508, 28.960089 ], [ 141.108398, 30.562261 ], [ 142.734375, 31.203405 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.490234, 37.683820 ], [ 154.072266, 36.527295 ], [ 153.632812, 34.777716 ], [ 151.699219, 34.234512 ], [ 150.117188, 35.389050 ], [ 150.468750, 37.090240 ], [ 152.490234, 37.683820 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822fa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.039062, 39.977120 ], [ 156.665039, 38.788345 ], [ 156.137695, 37.055177 ], [ 154.072266, 36.527295 ], [ 152.490234, 37.683820 ], [ 152.929688, 39.402244 ], [ 155.039062, 39.977120 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822f1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.842773, 38.169114 ], [ 150.468750, 37.090240 ], [ 150.117188, 35.389050 ], [ 148.227539, 34.777716 ], [ 146.645508, 35.853440 ], [ 146.909180, 37.544577 ], [ 148.842773, 38.169114 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "822faffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.259766, 40.513799 ], [ 152.929688, 39.402244 ], [ 152.490234, 37.683820 ], [ 150.468750, 37.090240 ], [ 148.842773, 38.169114 ], [ 149.194336, 39.876019 ], [ 151.259766, 40.513799 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.786133, 28.960089 ], [ 157.192383, 27.722436 ], [ 156.708984, 26.037042 ], [ 154.907227, 25.601902 ], [ 153.500977, 26.824071 ], [ 153.896484, 28.497661 ], [ 155.786133, 28.960089 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.446289, 29.688053 ], [ 153.896484, 28.497661 ], [ 153.500977, 26.824071 ], [ 151.743164, 26.313113 ], [ 150.292969, 27.488781 ], [ 150.644531, 29.152161 ], [ 152.446289, 29.688053 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ef7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.292969, 27.488781 ], [ 151.743164, 26.313113 ], [ 151.391602, 24.686952 ], [ 149.677734, 24.206890 ], [ 148.315430, 25.324167 ], [ 148.579102, 26.941660 ], [ 150.292969, 27.488781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824eaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.500977, 26.824071 ], [ 154.907227, 25.601902 ], [ 154.511719, 23.966176 ], [ 152.753906, 23.523700 ], [ 151.391602, 24.686952 ], [ 151.743164, 26.313113 ], [ 153.500977, 26.824071 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ed7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.150391, 30.259067 ], [ 150.644531, 29.152161 ], [ 150.292969, 27.488781 ], [ 148.579102, 26.941660 ], [ 147.128906, 28.033198 ], [ 147.392578, 29.726222 ], [ 149.150391, 30.259067 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.315430, 25.324167 ], [ 149.677734, 24.206890 ], [ 149.414062, 22.593726 ], [ 147.700195, 22.146708 ], [ 146.337891, 23.241346 ], [ 146.645508, 24.806681 ], [ 148.315430, 25.324167 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.731445, 31.877558 ], [ 156.225586, 30.675715 ], [ 155.786133, 28.960089 ], [ 153.896484, 28.497661 ], [ 152.446289, 29.688053 ], [ 152.841797, 31.353637 ], [ 154.731445, 31.877558 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.152344, 21.739091 ], [ 142.558594, 20.673905 ], [ 142.207031, 19.020577 ], [ 140.493164, 18.479609 ], [ 139.086914, 19.559790 ], [ 139.394531, 21.207459 ], [ 141.152344, 21.739091 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.207031, 19.020577 ], [ 143.613281, 17.895114 ], [ 143.305664, 16.214675 ], [ 141.591797, 15.665354 ], [ 140.185547, 16.762468 ], [ 140.493164, 18.479609 ], [ 142.207031, 19.020577 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827247fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 7.580328 ], [ 147.788086, 6.402648 ], [ 147.480469, 4.653080 ], [ 145.810547, 4.039618 ], [ 144.448242, 5.222247 ], [ 144.755859, 6.970049 ], [ 146.469727, 7.580328 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82725ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.480469, 4.653080 ], [ 148.798828, 3.513421 ], [ 148.491211, 1.757537 ], [ 146.821289, 1.142502 ], [ 145.502930, 2.284551 ], [ 145.810547, 4.039618 ], [ 147.480469, 4.653080 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.436523, 12.768946 ], [ 148.754883, 11.566144 ], [ 148.447266, 9.882275 ], [ 146.777344, 9.318990 ], [ 145.415039, 10.487812 ], [ 145.722656, 12.211180 ], [ 147.436523, 12.768946 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824adffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.021484, 17.308688 ], [ 138.427734, 16.172473 ], [ 138.120117, 14.477234 ], [ 136.406250, 13.880746 ], [ 135.000000, 14.987240 ], [ 135.307617, 16.678293 ], [ 137.021484, 17.308688 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827377fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.120117, 14.477234 ], [ 139.526367, 13.368243 ], [ 139.218750, 11.609193 ], [ 137.504883, 11.005904 ], [ 136.098633, 12.125264 ], [ 136.406250, 13.880746 ], [ 138.120117, 14.477234 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.302734, 13.624633 ], [ 156.533203, 12.425848 ], [ 156.225586, 10.790141 ], [ 154.643555, 10.314919 ], [ 153.369141, 11.480025 ], [ 153.676758, 13.111580 ], [ 155.302734, 13.624633 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82734ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.360352, 13.368243 ], [ 145.722656, 12.211180 ], [ 145.415039, 10.487812 ], [ 143.701172, 9.882275 ], [ 142.338867, 11.049038 ], [ 142.646484, 12.811801 ], [ 144.360352, 13.368243 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827367fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.185547, 16.762468 ], [ 141.591797, 15.665354 ], [ 141.240234, 13.923404 ], [ 139.526367, 13.368243 ], [ 138.120117, 14.477234 ], [ 138.427734, 16.172473 ], [ 140.185547, 16.762468 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827357fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.218750, 11.609193 ], [ 140.625000, 10.444598 ], [ 140.317383, 8.711359 ], [ 138.603516, 8.102739 ], [ 137.197266, 9.232249 ], [ 137.504883, 11.005904 ], [ 139.218750, 11.609193 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824acffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.086914, 19.559790 ], [ 140.493164, 18.479609 ], [ 140.185547, 16.762468 ], [ 138.427734, 16.172473 ], [ 137.021484, 17.308688 ], [ 137.329102, 18.979026 ], [ 139.086914, 19.559790 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.424805, 12.125264 ], [ 151.743164, 10.962764 ], [ 151.435547, 9.232249 ], [ 149.765625, 8.711359 ], [ 148.447266, 9.882275 ], [ 148.754883, 11.566144 ], [ 150.424805, 12.125264 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.392578, 20.550509 ], [ 148.754883, 19.394068 ], [ 148.403320, 17.769612 ], [ 146.733398, 17.266728 ], [ 145.327148, 18.437925 ], [ 145.678711, 20.055931 ], [ 147.392578, 20.550509 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827347fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.240234, 13.923404 ], [ 142.646484, 12.811801 ], [ 142.338867, 11.049038 ], [ 140.625000, 10.444598 ], [ 139.218750, 11.609193 ], [ 139.526367, 13.368243 ], [ 141.240234, 13.923404 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.402344, 14.306969 ], [ 153.676758, 13.111580 ], [ 153.369141, 11.480025 ], [ 151.743164, 10.962764 ], [ 150.424805, 12.125264 ], [ 150.732422, 13.795406 ], [ 152.402344, 14.306969 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 18.437925 ], [ 146.733398, 17.266728 ], [ 146.381836, 15.623037 ], [ 144.667969, 15.072124 ], [ 143.305664, 16.214675 ], [ 143.613281, 17.895114 ], [ 145.327148, 18.437925 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.381836, 15.623037 ], [ 147.744141, 14.434680 ], [ 147.436523, 12.768946 ], [ 145.722656, 12.211180 ], [ 144.360352, 13.368243 ], [ 144.667969, 15.072124 ], [ 146.381836, 15.623037 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827727fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.369141, 11.480025 ], [ 154.643555, 10.314919 ], [ 154.291992, 8.624472 ], [ 152.709961, 8.102739 ], [ 151.435547, 9.232249 ], [ 151.743164, 10.962764 ], [ 153.369141, 11.480025 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827267fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.415039, 10.487812 ], [ 146.777344, 9.318990 ], [ 146.469727, 7.580328 ], [ 144.755859, 6.970049 ], [ 143.393555, 8.146243 ], [ 143.701172, 9.882275 ], [ 145.415039, 10.487812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.272461, 21.166484 ], [ 145.678711, 20.055931 ], [ 145.327148, 18.437925 ], [ 143.613281, 17.895114 ], [ 142.207031, 19.020577 ], [ 142.558594, 20.673905 ], [ 144.272461, 21.166484 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82736ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.305664, 16.214675 ], [ 144.667969, 15.072124 ], [ 144.360352, 13.368243 ], [ 142.646484, 12.811801 ], [ 141.240234, 13.923404 ], [ 141.591797, 15.665354 ], [ 143.305664, 16.214675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827227fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.197266, 9.232249 ], [ 138.603516, 8.102739 ], [ 138.295898, 6.315299 ], [ 136.582031, 5.703448 ], [ 135.175781, 6.839170 ], [ 135.483398, 8.624472 ], [ 137.197266, 9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827277fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.393555, 8.146243 ], [ 144.755859, 6.970049 ], [ 144.448242, 5.222247 ], [ 142.778320, 4.609278 ], [ 141.372070, 5.747174 ], [ 141.679688, 7.536764 ], [ 143.393555, 8.146243 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827207fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.295898, 6.315299 ], [ 139.658203, 5.134715 ], [ 139.350586, 3.381824 ], [ 137.680664, 2.767478 ], [ 136.274414, 3.908099 ], [ 136.582031, 5.703448 ], [ 138.295898, 6.315299 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82722ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.317383, 8.711359 ], [ 141.679688, 7.536764 ], [ 141.372070, 5.747174 ], [ 139.658203, 5.134715 ], [ 138.295898, 6.315299 ], [ 138.603516, 8.102739 ], [ 140.317383, 8.711359 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82735ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.338867, 11.049038 ], [ 143.701172, 9.882275 ], [ 143.393555, 8.146243 ], [ 141.679688, 7.536764 ], [ 140.317383, 8.711359 ], [ 140.625000, 10.444598 ], [ 142.338867, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82720ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.372070, 5.747174 ], [ 142.778320, 4.609278 ], [ 142.426758, 2.855263 ], [ 140.756836, 2.196727 ], [ 139.350586, 3.381824 ], [ 139.658203, 5.134715 ], [ 141.372070, 5.747174 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827257fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.448242, 5.222247 ], [ 145.810547, 4.039618 ], [ 145.502930, 2.284551 ], [ 143.789062, 1.669686 ], [ 142.426758, 2.855263 ], [ 142.778320, 4.609278 ], [ 144.448242, 5.222247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.402344, 21.902278 ], [ 153.720703, 20.715015 ], [ 153.369141, 19.145168 ], [ 151.743164, 18.729502 ], [ 150.424805, 19.890723 ], [ 150.732422, 21.453069 ], [ 152.402344, 21.902278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.369141, 19.145168 ], [ 154.687500, 18.020528 ], [ 154.335938, 16.383391 ], [ 152.709961, 15.961329 ], [ 151.391602, 17.098792 ], [ 151.743164, 18.729502 ], [ 153.369141, 19.145168 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.424805, 19.890723 ], [ 151.743164, 18.729502 ], [ 151.391602, 17.098792 ], [ 149.765625, 16.636192 ], [ 148.403320, 17.769612 ], [ 148.754883, 19.394068 ], [ 150.424805, 19.890723 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.391602, 17.098792 ], [ 152.709961, 15.961329 ], [ 152.402344, 14.306969 ], [ 150.732422, 13.795406 ], [ 149.414062, 14.987240 ], [ 149.765625, 16.636192 ], [ 151.391602, 17.098792 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.403320, 17.769612 ], [ 149.765625, 16.636192 ], [ 149.414062, 14.987240 ], [ 147.744141, 14.434680 ], [ 146.381836, 15.623037 ], [ 146.733398, 17.266728 ], [ 148.403320, 17.769612 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.414062, 14.987240 ], [ 150.732422, 13.795406 ], [ 150.424805, 12.125264 ], [ 148.754883, 11.566144 ], [ 147.436523, 12.768946 ], [ 147.744141, 14.434680 ], [ 149.414062, 14.987240 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824e37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.434570, 21.125498 ], [ 156.752930, 19.932041 ], [ 156.313477, 18.396230 ], [ 154.687500, 18.020528 ], [ 153.369141, 19.145168 ], [ 153.720703, 20.715015 ], [ 155.434570, 21.125498 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.335938, 16.383391 ], [ 155.610352, 15.241790 ], [ 155.302734, 13.624633 ], [ 153.676758, 13.111580 ], [ 152.402344, 14.306969 ], [ 152.709961, 15.961329 ], [ 154.335938, 16.383391 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827737fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.435547, 9.232249 ], [ 152.709961, 8.102739 ], [ 152.402344, 6.358975 ], [ 150.776367, 5.834616 ], [ 149.458008, 6.970049 ], [ 149.765625, 8.711359 ], [ 151.435547, 9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82771ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.258789, 5.790897 ], [ 156.489258, 4.653080 ], [ 156.137695, 2.943041 ], [ 154.599609, 2.372369 ], [ 153.325195, 3.513421 ], [ 153.676758, 5.222247 ], [ 155.258789, 5.790897 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82724ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.458008, 6.970049 ], [ 150.776367, 5.834616 ], [ 150.424805, 4.083453 ], [ 148.798828, 3.513421 ], [ 147.480469, 4.653080 ], [ 147.788086, 6.402648 ], [ 149.458008, 6.970049 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8277affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.325195, 3.513421 ], [ 154.599609, 2.372369 ], [ 154.291992, 0.703107 ], [ 152.709961, 0.087891 ], [ 151.435547, 1.230374 ], [ 151.743164, 2.943041 ], [ 153.325195, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827707fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.291992, 8.624472 ], [ 155.566406, 7.449624 ], [ 155.258789, 5.790897 ], [ 153.676758, 5.222247 ], [ 152.402344, 6.358975 ], [ 152.709961, 8.102739 ], [ 154.291992, 8.624472 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827717fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.402344, 6.358975 ], [ 153.676758, 5.222247 ], [ 153.325195, 3.513421 ], [ 151.743164, 2.943041 ], [ 150.424805, 4.083453 ], [ 150.776367, 5.834616 ], [ 152.402344, 6.358975 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82726ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.447266, 9.882275 ], [ 149.765625, 8.711359 ], [ 149.458008, 6.970049 ], [ 147.788086, 6.402648 ], [ 146.469727, 7.580328 ], [ 146.777344, 9.318990 ], [ 148.447266, 9.882275 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8277a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.424805, 4.083453 ], [ 151.743164, 2.943041 ], [ 151.435547, 1.230374 ], [ 149.809570, 0.615223 ], [ 148.491211, 1.757537 ], [ 148.798828, 3.513421 ], [ 150.424805, 4.083453 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82772ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.225586, 10.790141 ], [ 157.456055, 9.622414 ], [ 157.104492, 7.972198 ], [ 155.566406, 7.449624 ], [ 154.291992, 8.624472 ], [ 154.643555, 10.314919 ], [ 156.225586, 10.790141 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825adffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.925781, 25.244696 ], [ 170.156250, 23.885838 ], [ 169.453125, 22.268764 ], [ 167.563477, 21.983801 ], [ 166.333008, 23.322080 ], [ 166.992188, 24.966140 ], [ 168.925781, 25.244696 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823257fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.641602, 38.444985 ], [ 164.179688, 37.125286 ], [ 163.476562, 35.424868 ], [ 161.367188, 34.994004 ], [ 159.829102, 36.279707 ], [ 160.444336, 38.030786 ], [ 162.641602, 38.444985 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823357fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.739258, 31.353637 ], [ 169.057617, 29.954935 ], [ 168.354492, 28.265682 ], [ 166.333008, 27.955591 ], [ 165.014648, 29.305561 ], [ 165.673828, 31.015279 ], [ 167.739258, 31.353637 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82321ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.453125, 39.470125 ], [ 170.859375, 38.065392 ], [ 170.068359, 36.385913 ], [ 167.827148, 36.102376 ], [ 166.376953, 37.474858 ], [ 167.167969, 39.164141 ], [ 169.453125, 39.470125 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823227fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.595703, 33.321349 ], [ 171.914062, 31.877558 ], [ 171.123047, 30.221102 ], [ 169.057617, 29.954935 ], [ 167.739258, 31.353637 ], [ 168.486328, 33.027088 ], [ 170.595703, 33.321349 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232e7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.629883, 40.513799 ], [ 167.167969, 39.164141 ], [ 166.376953, 37.474858 ], [ 164.179688, 37.125286 ], [ 162.641602, 38.444985 ], [ 163.344727, 40.145289 ], [ 165.629883, 40.513799 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823377fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.354492, 28.265682 ], [ 169.628906, 26.902477 ], [ 168.925781, 25.244696 ], [ 166.992188, 24.966140 ], [ 165.673828, 26.313113 ], [ 166.333008, 27.955591 ], [ 168.354492, 28.265682 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823267fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 33.284620 ], [ 162.202148, 31.989442 ], [ 161.630859, 30.259067 ], [ 159.609375, 29.878755 ], [ 158.203125, 31.128199 ], [ 158.730469, 32.842674 ], [ 160.751953, 33.284620 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82320ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, 37.474858 ], [ 167.827148, 36.102376 ], [ 167.080078, 34.415973 ], [ 164.926758, 34.089061 ], [ 163.476562, 35.424868 ], [ 164.179688, 37.125286 ], [ 166.376953, 37.474858 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82322ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.080078, 34.415973 ], [ 168.486328, 33.027088 ], [ 167.739258, 31.353637 ], [ 165.673828, 31.015279 ], [ 164.267578, 32.361403 ], [ 164.926758, 34.089061 ], [ 167.080078, 34.415973 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82330ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.123047, 30.221102 ], [ 172.397461, 28.806174 ], [ 171.606445, 27.176469 ], [ 169.628906, 26.902477 ], [ 168.354492, 28.265682 ], [ 169.057617, 29.954935 ], [ 171.123047, 30.221102 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823207fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.068359, 36.385913 ], [ 171.430664, 34.994004 ], [ 170.595703, 33.321349 ], [ 168.486328, 33.027088 ], [ 167.080078, 34.415973 ], [ 167.827148, 36.102376 ], [ 170.068359, 36.385913 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8233affffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.055664, 33.943360 ], [ 178.242188, 32.435613 ], [ 177.319336, 30.826781 ], [ 175.253906, 30.675715 ], [ 174.023438, 32.101190 ], [ 174.902344, 33.760882 ], [ 177.055664, 33.943360 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823277fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.476562, 35.424868 ], [ 164.926758, 34.089061 ], [ 164.267578, 32.361403 ], [ 162.202148, 31.989442 ], [ 160.751953, 33.284620 ], [ 161.367188, 34.994004 ], [ 163.476562, 35.424868 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82335ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.267578, 32.361403 ], [ 165.673828, 31.015279 ], [ 165.014648, 29.305561 ], [ 162.993164, 28.960089 ], [ 161.630859, 30.259067 ], [ 162.202148, 31.989442 ], [ 164.267578, 32.361403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82331ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 32.101190 ], [ 175.253906, 30.675715 ], [ 174.418945, 29.036961 ], [ 172.397461, 28.806174 ], [ 171.123047, 30.221102 ], [ 171.914062, 31.877558 ], [ 174.023438, 32.101190 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823237fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.583984, 35.209722 ], [ 174.902344, 33.760882 ], [ 174.023438, 32.101190 ], [ 171.914062, 31.877558 ], [ 170.595703, 33.321349 ], [ 171.430664, 34.994004 ], [ 173.583984, 35.209722 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82334ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.630859, 30.259067 ], [ 162.993164, 28.960089 ], [ 162.421875, 27.293689 ], [ 160.488281, 26.902477 ], [ 159.082031, 28.149503 ], [ 159.609375, 29.878755 ], [ 161.630859, 30.259067 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823347fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.014648, 29.305561 ], [ 166.333008, 27.955591 ], [ 165.673828, 26.313113 ], [ 163.740234, 25.958045 ], [ 162.421875, 27.293689 ], [ 162.993164, 28.960089 ], [ 165.014648, 29.305561 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82336ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.421875, 27.293689 ], [ 163.740234, 25.958045 ], [ 163.168945, 24.287027 ], [ 161.279297, 23.926013 ], [ 159.960938, 25.204941 ], [ 160.488281, 26.902477 ], [ 162.421875, 27.293689 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823367fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.673828, 26.313113 ], [ 166.992188, 24.966140 ], [ 166.333008, 23.322080 ], [ 164.443359, 22.998852 ], [ 163.168945, 24.287027 ], [ 163.740234, 25.958045 ], [ 165.673828, 26.313113 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82338ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.704102, 37.020098 ], [ 177.978516, 35.532226 ], [ 177.055664, 33.943360 ], [ 174.902344, 33.760882 ], [ 173.583984, 35.209722 ], [ 174.506836, 36.844461 ], [ 176.704102, 37.020098 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8232a7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.396484, 40.111689 ], [ 177.714844, 38.616870 ], [ 176.704102, 37.020098 ], [ 174.506836, 36.844461 ], [ 173.144531, 38.307181 ], [ 174.067383, 39.943436 ], [ 176.396484, 40.111689 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823217fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.144531, 38.307181 ], [ 174.506836, 36.844461 ], [ 173.583984, 35.209722 ], [ 171.430664, 34.994004 ], [ 170.068359, 36.385913 ], [ 170.859375, 38.065392 ], [ 173.144531, 38.307181 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823307fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.418945, 29.036961 ], [ 175.605469, 27.605671 ], [ 174.770508, 25.997550 ], [ 172.836914, 25.760320 ], [ 171.606445, 27.176469 ], [ 172.397461, 28.806174 ], [ 174.418945, 29.036961 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82332ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.606445, 27.176469 ], [ 172.836914, 25.760320 ], [ 172.089844, 24.166802 ], [ 170.156250, 23.885838 ], [ 168.925781, 25.244696 ], [ 169.628906, 26.902477 ], [ 171.606445, 27.176469 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823337fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.583008, 27.761330 ], [ 178.681641, 26.352498 ], [ 177.846680, 24.766785 ], [ 175.913086, 24.567108 ], [ 174.770508, 25.997550 ], [ 175.605469, 27.605671 ], [ 177.583008, 27.761330 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823327fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.770508, 25.997550 ], [ 175.913086, 24.567108 ], [ 175.122070, 22.998852 ], [ 173.232422, 22.796439 ], [ 172.089844, 24.166802 ], [ 172.836914, 25.760320 ], [ 174.770508, 25.997550 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "823317fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.319336, 30.826781 ], [ 178.461914, 29.382175 ], [ 177.583008, 27.761330 ], [ 175.605469, 27.605671 ], [ 174.418945, 29.036961 ], [ 175.253906, 30.675715 ], [ 177.319336, 30.826781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.146484, 15.749963 ], [ 166.333008, 14.519780 ], [ 165.761719, 13.025966 ], [ 164.091797, 12.768946 ], [ 162.905273, 13.966054 ], [ 163.432617, 15.453680 ], [ 165.146484, 15.749963 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.859375, 13.795406 ], [ 171.914062, 12.597455 ], [ 171.254883, 11.135287 ], [ 169.628906, 10.919618 ], [ 168.530273, 12.082296 ], [ 169.145508, 13.539201 ], [ 170.859375, 13.795406 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b47fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.013672, 9.535749 ], [ 170.024414, 8.407168 ], [ 169.453125, 7.057282 ], [ 167.871094, 6.839170 ], [ 166.816406, 7.928675 ], [ 167.387695, 9.275622 ], [ 169.013672, 9.535749 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.453125, 7.057282 ], [ 170.463867, 5.965754 ], [ 169.892578, 4.696879 ], [ 168.354492, 4.477856 ], [ 167.343750, 5.528511 ], [ 167.871094, 6.839170 ], [ 169.453125, 7.057282 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a67fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, 13.025966 ], [ 166.860352, 11.867351 ], [ 166.289062, 10.444598 ], [ 164.663086, 10.185187 ], [ 163.564453, 11.307708 ], [ 164.091797, 12.768946 ], [ 165.761719, 13.025966 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.419922, 16.551962 ], [ 171.518555, 15.284185 ], [ 170.859375, 13.795406 ], [ 169.145508, 13.539201 ], [ 168.046875, 14.774883 ], [ 168.662109, 16.299051 ], [ 170.419922, 16.551962 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824fb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.872070, 21.371244 ], [ 165.102539, 20.097206 ], [ 164.531250, 18.521283 ], [ 162.773438, 18.229351 ], [ 161.542969, 19.435514 ], [ 162.070312, 21.043491 ], [ 163.872070, 21.371244 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, 18.521283 ], [ 165.717773, 17.266728 ], [ 165.146484, 15.749963 ], [ 163.432617, 15.453680 ], [ 162.246094, 16.678293 ], [ 162.773438, 18.229351 ], [ 164.531250, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827767fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 12.211180 ], [ 161.938477, 11.049038 ], [ 161.630859, 9.449062 ], [ 160.136719, 8.971897 ], [ 158.950195, 10.141932 ], [ 159.257812, 11.738302 ], [ 160.751953, 12.211180 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825baffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.681641, 13.410994 ], [ 179.604492, 12.168226 ], [ 178.901367, 10.790141 ], [ 177.231445, 10.617418 ], [ 176.308594, 11.781325 ], [ 177.011719, 13.197165 ], [ 178.681641, 13.410994 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.936523, 19.352611 ], [ 171.079102, 18.062312 ], [ 170.419922, 16.551962 ], [ 168.662109, 16.299051 ], [ 167.519531, 17.560247 ], [ 168.134766, 19.103648 ], [ 169.936523, 19.352611 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.519531, 17.560247 ], [ 168.662109, 16.299051 ], [ 168.046875, 14.774883 ], [ 166.333008, 14.519780 ], [ 165.146484, 15.749963 ], [ 165.717773, 17.266728 ], [ 167.519531, 17.560247 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.246094, 16.678293 ], [ 163.432617, 15.453680 ], [ 162.905273, 13.966054 ], [ 161.235352, 13.667338 ], [ 160.048828, 14.817371 ], [ 160.532227, 16.341226 ], [ 162.246094, 16.678293 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.627930, 12.811801 ], [ 174.638672, 11.609193 ], [ 173.935547, 10.185187 ], [ 172.309570, 9.968851 ], [ 171.254883, 11.135287 ], [ 171.914062, 12.597455 ], [ 173.627930, 12.811801 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824fa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.542969, 19.435514 ], [ 162.773438, 18.229351 ], [ 162.246094, 16.678293 ], [ 160.532227, 16.341226 ], [ 159.301758, 17.560247 ], [ 159.785156, 19.103648 ], [ 161.542969, 19.435514 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ecffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.892578, 4.696879 ], [ 170.859375, 3.645000 ], [ 170.288086, 2.416276 ], [ 169.013672, 1.933227 ], [ 168.046875, 2.943041 ], [ 168.354492, 4.477856 ], [ 169.892578, 4.696879 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.308594, 11.781325 ], [ 177.231445, 10.617418 ], [ 176.528320, 9.232249 ], [ 174.902344, 9.015302 ], [ 173.935547, 10.185187 ], [ 174.638672, 11.609193 ], [ 176.308594, 11.781325 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.046875, 14.774883 ], [ 169.145508, 13.539201 ], [ 168.530273, 12.082296 ], [ 166.860352, 11.867351 ], [ 165.761719, 13.025966 ], [ 166.333008, 14.519780 ], [ 168.046875, 14.774883 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.905273, 13.966054 ], [ 164.091797, 12.768946 ], [ 163.564453, 11.307708 ], [ 161.938477, 11.049038 ], [ 160.751953, 12.211180 ], [ 161.235352, 13.667338 ], [ 162.905273, 13.966054 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82776ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.564453, 11.307708 ], [ 164.663086, 10.185187 ], [ 164.135742, 8.798225 ], [ 162.729492, 8.320212 ], [ 161.630859, 9.449062 ], [ 161.938477, 11.049038 ], [ 163.564453, 11.307708 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.530273, 12.082296 ], [ 169.628906, 10.919618 ], [ 169.013672, 9.535749 ], [ 167.387695, 9.275622 ], [ 166.289062, 10.444598 ], [ 166.860352, 11.867351 ], [ 168.530273, 12.082296 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "824f37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.048828, 14.817371 ], [ 161.235352, 13.667338 ], [ 160.751953, 12.211180 ], [ 159.257812, 11.738302 ], [ 158.071289, 12.897489 ], [ 158.378906, 14.519780 ], [ 160.048828, 14.817371 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825aeffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.948242, 20.385825 ], [ 168.134766, 19.103648 ], [ 167.519531, 17.560247 ], [ 165.717773, 17.266728 ], [ 164.531250, 18.521283 ], [ 165.102539, 20.097206 ], [ 166.948242, 20.385825 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827667fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.926758, 6.140555 ], [ 165.981445, 5.047171 ], [ 165.717773, 3.469557 ], [ 164.311523, 2.943041 ], [ 163.256836, 4.039618 ], [ 163.564453, 5.615986 ], [ 164.926758, 6.140555 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b6ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.816406, 7.928675 ], [ 167.871094, 6.839170 ], [ 167.343750, 5.528511 ], [ 165.981445, 5.047171 ], [ 164.926758, 6.140555 ], [ 165.234375, 7.667441 ], [ 166.816406, 7.928675 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827757fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.829102, 7.362467 ], [ 160.971680, 6.227934 ], [ 160.664062, 4.609278 ], [ 159.213867, 4.083453 ], [ 158.027344, 5.178482 ], [ 158.334961, 6.839170 ], [ 159.829102, 7.362467 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82774ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.135742, 8.798225 ], [ 165.234375, 7.667441 ], [ 164.926758, 6.140555 ], [ 163.564453, 5.615986 ], [ 162.421875, 6.751896 ], [ 162.729492, 8.320212 ], [ 164.135742, 8.798225 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827747fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.630859, 9.449062 ], [ 162.729492, 8.320212 ], [ 162.421875, 6.751896 ], [ 160.971680, 6.227934 ], [ 159.829102, 7.362467 ], [ 160.136719, 8.971897 ], [ 161.630859, 9.449062 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82775ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.421875, 6.751896 ], [ 163.564453, 5.615986 ], [ 163.256836, 4.039618 ], [ 161.806641, 3.513421 ], [ 160.664062, 4.609278 ], [ 160.971680, 6.227934 ], [ 162.421875, 6.751896 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827677fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.256836, 4.039618 ], [ 164.311523, 2.943041 ], [ 164.047852, 1.362176 ], [ 162.641602, 0.834931 ], [ 161.499023, 1.889306 ], [ 161.806641, 3.513421 ], [ 163.256836, 4.039618 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82762ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.664062, 4.609278 ], [ 161.806641, 3.513421 ], [ 161.499023, 1.889306 ], [ 160.048828, 1.318243 ], [ 158.862305, 2.416276 ], [ 159.213867, 4.083453 ], [ 160.664062, 4.609278 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b4ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.289062, 10.444598 ], [ 167.387695, 9.275622 ], [ 166.816406, 7.928675 ], [ 165.234375, 7.667441 ], [ 164.135742, 8.798225 ], [ 164.663086, 10.185187 ], [ 166.289062, 10.444598 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82766ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, 5.528511 ], [ 168.354492, 4.477856 ], [ 168.046875, 2.943041 ], [ 166.728516, 2.416276 ], [ 165.717773, 3.469557 ], [ 165.981445, 5.047171 ], [ 167.343750, 5.528511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827647fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.717773, 3.469557 ], [ 166.728516, 2.416276 ], [ 166.420898, 0.878872 ], [ 165.102539, 0.351560 ], [ 164.047852, 1.362176 ], [ 164.311523, 2.943041 ], [ 165.717773, 3.469557 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825aa7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.286133, 18.895893 ], [ 179.296875, 17.602139 ], [ 178.505859, 16.088042 ], [ 176.748047, 15.919074 ], [ 175.737305, 17.224758 ], [ 176.484375, 18.729502 ], [ 178.286133, 18.895893 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.044922, 14.434680 ], [ 177.011719, 13.197165 ], [ 176.308594, 11.781325 ], [ 174.638672, 11.609193 ], [ 173.627930, 12.811801 ], [ 174.287109, 14.264383 ], [ 176.044922, 14.434680 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.737305, 17.224758 ], [ 176.748047, 15.919074 ], [ 176.044922, 14.434680 ], [ 174.287109, 14.264383 ], [ 173.276367, 15.496032 ], [ 173.979492, 17.014768 ], [ 175.737305, 17.224758 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825af7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.485352, 21.207459 ], [ 173.627930, 19.849394 ], [ 172.880859, 18.312811 ], [ 171.079102, 18.062312 ], [ 169.936523, 19.352611 ], [ 170.639648, 20.961440 ], [ 172.485352, 21.207459 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.880859, 18.312811 ], [ 173.979492, 17.014768 ], [ 173.276367, 15.496032 ], [ 171.518555, 15.284185 ], [ 170.419922, 16.551962 ], [ 171.079102, 18.062312 ], [ 172.880859, 18.312811 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825aaffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.429688, 20.055931 ], [ 176.484375, 18.729502 ], [ 175.737305, 17.224758 ], [ 173.979492, 17.014768 ], [ 172.880859, 18.312811 ], [ 173.627930, 19.849394 ], [ 175.429688, 20.055931 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.276367, 15.496032 ], [ 174.287109, 14.264383 ], [ 173.627930, 12.811801 ], [ 171.914062, 12.597455 ], [ 170.859375, 13.795406 ], [ 171.518555, 15.284185 ], [ 173.276367, 15.496032 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825a87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.066406, 21.779905 ], [ 179.121094, 20.427013 ], [ 178.286133, 18.895893 ], [ 176.484375, 18.729502 ], [ 175.429688, 20.055931 ], [ 176.220703, 21.616579 ], [ 178.066406, 21.779905 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.505859, 16.088042 ], [ 179.472656, 14.817371 ], [ 178.681641, 13.410994 ], [ 177.011719, 13.197165 ], [ 176.044922, 14.434680 ], [ 176.748047, 15.919074 ], [ 178.505859, 16.088042 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ed7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.550781, 5.309766 ], [ 175.473633, 4.258768 ], [ 174.814453, 3.030812 ], [ 173.320312, 2.811371 ], [ 172.397461, 3.864255 ], [ 172.968750, 5.090944 ], [ 174.550781, 5.309766 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b57fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.254883, 11.135287 ], [ 172.309570, 9.968851 ], [ 171.650391, 8.624472 ], [ 170.024414, 8.407168 ], [ 169.013672, 9.535749 ], [ 169.628906, 10.919618 ], [ 171.254883, 11.135287 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b0ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.935547, 10.185187 ], [ 174.902344, 9.015302 ], [ 174.243164, 7.710992 ], [ 172.661133, 7.493196 ], [ 171.650391, 8.624472 ], [ 172.309570, 9.968851 ], [ 173.935547, 10.185187 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ef7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.814453, 3.030812 ], [ 175.693359, 2.021065 ], [ 175.078125, 0.834931 ], [ 173.627930, 0.659165 ], [ 172.705078, 1.625758 ], [ 173.320312, 2.811371 ], [ 174.814453, 3.030812 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b77fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.650391, 8.624472 ], [ 172.661133, 7.493196 ], [ 172.045898, 6.184246 ], [ 170.463867, 5.965754 ], [ 169.453125, 7.057282 ], [ 170.024414, 8.407168 ], [ 171.650391, 8.624472 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.243164, 7.710992 ], [ 175.209961, 6.577303 ], [ 174.550781, 5.309766 ], [ 172.968750, 5.090944 ], [ 172.045898, 6.184246 ], [ 172.661133, 7.493196 ], [ 174.243164, 7.710992 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827edffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.045898, 6.184246 ], [ 172.968750, 5.090944 ], [ 172.397461, 3.864255 ], [ 170.859375, 3.645000 ], [ 169.892578, 4.696879 ], [ 170.463867, 5.965754 ], [ 172.045898, 6.184246 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b07fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.528320, 9.232249 ], [ 177.451172, 8.102739 ], [ 176.791992, 6.795535 ], [ 175.209961, 6.577303 ], [ 174.243164, 7.710992 ], [ 174.902344, 9.015302 ], [ 176.528320, 9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827e9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.208984, 5.878332 ], [ 179.912109, 4.477856 ], [ 179.208984, 3.250209 ], [ 177.846680, 3.425692 ], [ 177.011719, 4.434044 ], [ 177.670898, 5.703448 ], [ 179.208984, 5.878332 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b27fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.791992, 6.795535 ], [ 177.670898, 5.703448 ], [ 177.011719, 4.434044 ], [ 175.473633, 4.258768 ], [ 174.550781, 5.309766 ], [ 175.209961, 6.577303 ], [ 176.791992, 6.795535 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827ec7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.397461, 3.864255 ], [ 173.320312, 2.811371 ], [ 172.705078, 1.625758 ], [ 171.210938, 1.450040 ], [ 170.288086, 2.416276 ], [ 170.859375, 3.645000 ], [ 172.397461, 3.864255 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b37fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.033203, 8.276727 ], [ 179.912109, 7.188101 ], [ 179.208984, 5.878332 ], [ 177.670898, 5.703448 ], [ 176.791992, 6.795535 ], [ 177.451172, 8.102739 ], [ 179.033203, 8.276727 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "825b17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.901367, 10.790141 ], [ 179.780273, 9.622414 ], [ 179.033203, 8.276727 ], [ 177.451172, 8.102739 ], [ 176.528320, 9.232249 ], [ 177.231445, 10.617418 ], [ 178.901367, 10.790141 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827e8ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.011719, 4.434044 ], [ 177.846680, 3.425692 ], [ 177.187500, 2.196727 ], [ 175.693359, 2.021065 ], [ 174.814453, 3.030812 ], [ 175.473633, 4.258768 ], [ 177.011719, 4.434044 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827e87fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.846680, 3.425692 ], [ 179.208984, 3.250209 ], [ 179.868164, 1.845384 ], [ 179.165039, 0.659165 ], [ 177.846680, 0.834931 ], [ 177.187500, 2.196727 ], [ 177.846680, 3.425692 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "82825ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.339844, -0.043945 ], [ 4.086914, -1.274309 ], [ 3.427734, -2.723583 ], [ 1.977539, -2.899153 ], [ 1.230469, -1.669686 ], [ 1.933594, -0.263671 ], [ 3.339844, -0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "826a9ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.807617, -0.131836 ], [ 23.862305, -1.493971 ], [ 23.159180, -3.118576 ], [ 21.401367, -3.337954 ], [ 20.390625, -1.977147 ], [ 21.093750, -0.395505 ], [ 22.807617, -0.131836 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, -0.263671 ], [ 44.868164, -1.537901 ], [ 44.340820, -3.118576 ], [ 42.714844, -3.381824 ], [ 41.572266, -2.064982 ], [ 42.143555, -0.483393 ], [ 43.769531, -0.263671 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828517fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.919922, -0.307616 ], [ 59.062500, -1.186439 ], [ 58.710938, -2.679687 ], [ 57.172852, -3.250209 ], [ 56.030273, -2.284551 ], [ 56.425781, -0.834931 ], [ 57.919922, -0.307616 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8286cffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.201172, -0.175781 ], [ 77.563477, -1.098565 ], [ 77.519531, -2.723583 ], [ 75.981445, -3.337954 ], [ 74.663086, -2.372369 ], [ 74.838867, -0.878872 ], [ 76.201172, -0.175781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "828cb7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.522461, -0.175781 ], [ 111.840820, -1.098565 ], [ 111.665039, -2.767478 ], [ 110.126953, -3.513421 ], [ 108.808594, -2.591889 ], [ 108.984375, -0.922812 ], [ 110.522461, -0.175781 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8272c7fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.481445, -0.087891 ], [ 144.843750, -1.230374 ], [ 144.536133, -2.943041 ], [ 142.866211, -3.601142 ], [ 141.503906, -2.460181 ], [ 141.811523, -0.703107 ], [ 143.481445, -0.087891 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827f5ffffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.947266, -0.043945 ], [ 171.870117, -1.010690 ], [ 171.606445, -2.460181 ], [ 170.375977, -3.030812 ], [ 169.453125, -2.064982 ], [ 169.716797, -0.571280 ], [ 170.947266, -0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "827e17fffffffff", "felt:h3_level": 2, "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.957031, -0.087891 ], [ 177.231445, -0.307616 ], [ 177.846680, -1.625758 ], [ 177.231445, -2.767478 ], [ 175.957031, -2.547988 ], [ 175.341797, -1.230374 ], [ 175.957031, -0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "82176ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 2, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 299882, "tippecanoe:sum:POP_EST": 1189835, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 21, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 6430, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 46849720, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 46849720, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": 166.908762, "tippecanoe:sum:LABEL_X": 344.884189, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -15.37153, "tippecanoe:min:LABEL_Y": -17.826099, "tippecanoe:sum:LABEL_Y": -33.197629, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 2318642046, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 594917.5, "tippecanoe:mean:POP_RANK": 10.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3215, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424860, "tippecanoe:mean:WOE_ID_EH": 23424860, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 172.4420945, "tippecanoe:mean:LABEL_Y": -16.5988145, "tippecanoe:mean:NE_ID": 1159321023, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.165039, 64.774125 ], [ 180.878906, 63.292939 ], [ 178.857422, 61.876870 ], [ 175.209961, 61.835413 ], [ 173.232422, 63.233627 ], [ 175.078125, 64.755390 ], [ 179.165039, 64.774125 ] ] ], [ [ [ -180.834961, 64.774125 ], [ -179.121094, 63.292939 ], [ -181.142578, 61.876870 ], [ -184.790039, 61.835413 ], [ -186.767578, 63.233627 ], [ -184.921875, 64.755390 ], [ -180.834961, 64.774125 ] ] ] ] } } ] } ] } 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 03e2f0948..7064a4257 100644 --- a/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json +++ b/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json @@ -1,221 +1,67 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "bin": "8188fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -154.028320, 4.258768 ], [ -150.908203, 0.790990 ], [ -152.402344, -3.425692 ], [ -156.862793, -4.258768 ], [ -159.938965, -0.944781 ], [ -158.598633, 3.337954 ], [ -154.028320, 4.258768 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "811cfffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 31, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 56494501, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 102, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 291526, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 16152, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 187399089, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 187399089, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 72, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 88, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -792, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 29.7, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 70, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -107.7326, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 8.617449, "tippecanoe:sum:LABEL_Y": 134.44802099999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 9274567670, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 3.875, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.125, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.25, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 7061812.625, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 36440.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424886.125, "tippecanoe:mean:WOE_ID_EH": 23424886.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7125, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -13.466575, "tippecanoe:mean:LABEL_Y": 16.806002624999999, "tippecanoe:mean:NE_ID": 1159320958.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.053711, 47.857403 ], [ -136.691895, 45.336702 ], [ -138.449707, 41.459195 ], [ -143.854980, 41.211722 ], [ -147.458496, 44.087585 ], [ -145.502930, 47.234490 ], [ -141.723633, 47.413220 ], [ -140.053711, 47.857403 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "816f7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.738770, 5.309766 ], [ -120.476074, 5.156599 ], [ -118.234863, 1.537901 ], [ -120.256348, -1.691649 ], [ -124.299316, -1.450040 ], [ -126.474609, 1.625758 ], [ -125.661621, 3.601142 ], [ -124.738770, 5.309766 ] ] ] } } +{ "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": "81133ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.278320, 70.851881 ], [ -112.543945, 67.415927 ], [ -116.455078, 63.194018 ], [ -125.332031, 62.237233 ], [ -132.517090, 65.062868 ], [ -131.704102, 69.372573 ], [ -120.278320, 70.851881 ] ] ] } } +{ "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": "816cfffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.305664, 3.930020 ], [ -93.911133, 3.491489 ], [ -92.219238, -0.659165 ], [ -95.075684, -4.346411 ], [ -99.514160, -3.754634 ], [ -101.052246, 0.395505 ], [ -98.305664, 3.930020 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81363ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.744629, 37.683820 ], [ -142.316895, 34.452218 ], [ -144.162598, 30.562261 ], [ -149.348145, 29.897806 ], [ -152.841797, 33.119150 ], [ -151.127930, 37.037640 ], [ -145.744629, 37.683820 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8147bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.550293, 31.147006 ], [ -172.639160, 28.207609 ], [ -173.671875, 23.785345 ], [ -178.220215, 22.085640 ], [ -182.153320, 24.766785 ], [ -181.516113, 29.382175 ], [ -176.550293, 31.147006 ] ] ], [ [ [ 183.449707, 31.147006 ], [ 187.360840, 28.207609 ], [ 186.328125, 23.785345 ], [ 181.779785, 22.085640 ], [ 177.846680, 24.766785 ], [ 178.483887, 29.382175 ], [ 183.449707, 31.147006 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8136fffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 3428, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4033, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 4028, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 46849769, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 46849769, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 56, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -89.801781, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -107.292315, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 2318641442, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1714, "tippecanoe:mean:POP_RANK": 2.5, "tippecanoe:mean:POP_YEAR": 2016.5, "tippecanoe:mean:GDP_MD": 141, "tippecanoe:mean:GDP_YEAR": 2014, "tippecanoe:mean:WOE_ID": 23424884.5, "tippecanoe:mean:WOE_ID_EH": 23424884.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 28, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -44.9008905, "tippecanoe:mean:LABEL_Y": -53.6461575, "tippecanoe:mean:NE_ID": 1159320721, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.162598, 30.562261 ], [ -140.910645, 27.059126 ], [ -142.712402, 22.877440 ], [ -147.700195, 22.167058 ], [ -151.040039, 25.661333 ], [ -149.348145, 29.897806 ], [ -144.162598, 30.562261 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "816c7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.120605, 7.057282 ], [ -86.594238, 6.599131 ], [ -84.770508, 2.504085 ], [ -87.604980, -1.186439 ], [ -92.219238, -0.659165 ], [ -93.911133, 3.491489 ], [ -91.120605, 7.057282 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8136bffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 46849430, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849430, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 43, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -209.80598200000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -121.16396399999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 4048275965, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21296916.666666669, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 242587.66666666667, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 15616476.666666666, "tippecanoe:mean:WOE_ID_EH": 15616476.666666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14.333333333333334, "tippecanoe:mean:LONG_LEN": 14.333333333333334, "tippecanoe:mean:ABBREV_LEN": 8.333333333333334, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 3.8000000000000004, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -69.93532733333335, "tippecanoe:mean:LABEL_Y": -40.387988, "tippecanoe:mean:NE_ID": 1349425321.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.841797, 33.119150 ], [ -149.348145, 29.897806 ], [ -151.040039, 25.661333 ], [ -156.093750, 24.686952 ], [ -159.565430, 27.916767 ], [ -158.049316, 32.119801 ], [ -152.841797, 33.119150 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "815bbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -178.945312, 17.748687 ], [ -175.451660, 15.284185 ], [ -176.352539, 11.049038 ], [ -178.242188, 10.466206 ], [ -180.219727, 9.622414 ], [ -183.713379, 11.802834 ], [ -183.229980, 15.919074 ], [ -178.945312, 17.748687 ] ] ], [ [ [ 181.054688, 17.748687 ], [ 184.548340, 15.284185 ], [ 183.647461, 11.049038 ], [ 181.757812, 10.466206 ], [ 179.780273, 9.622414 ], [ 176.286621, 11.802834 ], [ 176.770020, 15.919074 ], [ 181.054688, 17.748687 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8128fffffffffff", "tippecanoe:count:scalerank": 30, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 30, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 30, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 30, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 60, "tippecanoe:count:GEOU_DIF": 30, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 30, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 30, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 3, "tippecanoe:count:MAPCOLOR7": 30, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 95, "tippecanoe:count:MAPCOLOR8": 30, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 86, "tippecanoe:count:MAPCOLOR9": 30, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 106, "tippecanoe:count:MAPCOLOR13": 30, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 84, "tippecanoe:count:POP_EST": 30, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 653845935, "tippecanoe:count:POP_RANK": 30, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 377, "tippecanoe:count:POP_YEAR": 30, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 60563, "tippecanoe:count:GDP_MD": 30, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 4652105, "tippecanoe:count:GDP_YEAR": 30, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 60537, "tippecanoe:count:WOE_ID": 30, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 567060578, "tippecanoe:count:WOE_ID_EH": 30, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 637335789, "tippecanoe:count:ADM0_A3_UN": 30, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2970, "tippecanoe:count:ADM0_A3_WB": 30, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2970, "tippecanoe:count:NAME_LEN": 30, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 245, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 251, "tippecanoe:count:ABBREV_LEN": 30, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 140, "tippecanoe:count:TINY": 30, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2664, "tippecanoe:count:HOMEPART": 30, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -270, "tippecanoe:count:MIN_ZOOM": 30, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 21, "tippecanoe:count:MIN_LABEL": 30, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 117, "tippecanoe:count:MAX_LABEL": 30, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 259.9, "tippecanoe:count:LABEL_X": 30, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 21.555839, "tippecanoe:sum:LABEL_X": 1192.538962, "tippecanoe:count:LABEL_Y": 30, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 939.4510879999998, "tippecanoe:count:NE_ID": 30, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 35349939856, "tippecanoe:mean:scalerank": 0.36666666666666666, "tippecanoe:mean:LABELRANK": 4.233333333333333, "tippecanoe:mean:ADM0_DIF": 0.1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.8666666666666669, "tippecanoe:mean:MAPCOLOR9": 3.533333333333333, "tippecanoe:mean:MAPCOLOR13": 2.8, "tippecanoe:mean:POP_EST": 21794864.5, "tippecanoe:mean:POP_RANK": 12.566666666666667, "tippecanoe:mean:POP_YEAR": 2018.7666666666667, "tippecanoe:mean:GDP_MD": 155070.16666666667, "tippecanoe:mean:GDP_YEAR": 2017.9, "tippecanoe:mean:WOE_ID": 18902019.266666667, "tippecanoe:mean:WOE_ID_EH": 21244526.3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.166666666666666, "tippecanoe:mean:LONG_LEN": 8.366666666666668, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -88.8, "tippecanoe:mean:HOMEPART": -9, "tippecanoe:mean:MIN_ZOOM": 0.7, "tippecanoe:mean:MIN_LABEL": 3.9, "tippecanoe:mean:MAX_LABEL": 8.663333333333333, "tippecanoe:mean:LABEL_X": 39.751298733333339, "tippecanoe:mean:LABEL_Y": 31.31503626666666, "tippecanoe:mean:NE_ID": 1178331328.5333334, "tippecanoe:count": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.112793, 50.986099 ], [ -120.915527, 49.396675 ], [ -119.223633, 47.798397 ], [ -122.124023, 44.056012 ], [ -127.968750, 43.421009 ], [ -131.286621, 46.422713 ], [ -128.913574, 50.148746 ], [ -123.112793, 50.986099 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81237ffffffffff", "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 862, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 431, "tippecanoe:min:GDP_MD": 10, "tippecanoe:max:GDP_MD": 852, "tippecanoe:sum:GDP_YEAR": 4022, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2011, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -342.30080599999999, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -171.15040299999999, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_Y": -32.685095000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -16.342547500000003, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 4.5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 4.5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:sum:NE_ID": 2318642556, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321278, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:sum:POP_EST": 198717, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 99358.5, "tippecanoe:min:POP_EST": 1620, "tippecanoe:max:POP_EST": 197097, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:min:POP_RANK": 3, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 4037, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -96, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 4, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 5 }, "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": "8112fffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 41, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 325740912, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16142, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 568260, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549173, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044401, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 86, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 27.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 62.5, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 582.38741, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 326.084598, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568164, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.375, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.125, "tippecanoe:mean:POP_EST": 40717614, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 71032.5, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 17568646.625, "tippecanoe:mean:WOE_ID_EH": 23005550.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 10.75, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0.625, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 7.8125, "tippecanoe:mean:LABEL_X": 72.79842625, "tippecanoe:mean:LABEL_Y": 40.76057475, "tippecanoe:mean:NE_ID": 1159321020.5, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.235840, 55.478853 ], [ -109.995117, 51.754240 ], [ -112.785645, 48.004625 ], [ -119.223633, 47.798397 ], [ -120.915527, 49.396675 ], [ -123.112793, 50.986099 ], [ -121.442871, 54.914514 ], [ -114.235840, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8179bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.119629, 6.860985 ], [ -137.307129, 3.381824 ], [ -138.955078, -0.834931 ], [ -143.393555, -1.713612 ], [ -146.337891, 1.669686 ], [ -144.733887, 6.053161 ], [ -140.119629, 6.860985 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8127bffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 22, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 29, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 30, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 39, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 1736062529, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 123, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16153, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 22884216, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424781, "tippecanoe:sum:WOE_ID": 188839895, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424781, "tippecanoe:sum:WOE_ID_EH": 188839895, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 58, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 71, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 60.7, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 942.240656, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 232.15936599999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320471, "tippecanoe:sum:NE_ID": 9274567810, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.375, "tippecanoe:mean:MAPCOLOR8": 3.625, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 4.875, "tippecanoe:mean:POP_EST": 217007816.125, "tippecanoe:mean:POP_RANK": 15.375, "tippecanoe:mean:POP_YEAR": 2019.125, "tippecanoe:mean:GDP_MD": 2860527, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23604986.875, "tippecanoe:mean:WOE_ID_EH": 23604986.875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.25, "tippecanoe:mean:LONG_LEN": 8.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.5875, "tippecanoe:mean:LABEL_X": 117.780082, "tippecanoe:mean:LABEL_Y": 29.019920749999998, "tippecanoe:mean:NE_ID": 1159320976.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.995117, 51.754240 ], [ -102.897949, 51.563412 ], [ -99.909668, 47.472663 ], [ -102.326660, 45.197522 ], [ -103.535156, 44.087585 ], [ -109.797363, 44.418088 ], [ -112.785645, 48.004625 ], [ -109.995117, 51.754240 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8170bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.309082, 3.820408 ], [ -171.364746, 0.659165 ], [ -172.353516, -3.294082 ], [ -176.066895, -3.973861 ], [ -178.791504, -0.944781 ], [ -178.022461, 2.899153 ], [ -174.309082, 3.820408 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8112bffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 61, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 42, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 51, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 46, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 195489159, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6322700, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317101037, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317101037, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 96, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 104, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 47.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 116.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 300.14189400000006, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 761.8934709999999, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320427, "tippecanoe:sum:NE_ID": 16230492268, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.357142857142857, "tippecanoe:mean:ADM0_DIF": 0.21428571428571428, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.642857142857143, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 13963511.357142857, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 451621.4285714286, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650074.07142857, "tippecanoe:mean:WOE_ID_EH": 22650074.07142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.857142857142857, "tippecanoe:mean:LONG_LEN": 7.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3714285714285716, "tippecanoe:mean:MAX_LABEL": 8.335714285714286, "tippecanoe:mean:LABEL_X": 21.43870671428572, "tippecanoe:mean:LABEL_Y": 54.4209622142857, "tippecanoe:mean:NE_ID": 1159320876.2857145, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.848145, 58.043004 ], [ -121.442871, 54.914514 ], [ -123.112793, 50.986099 ], [ -128.913574, 50.148746 ], [ -133.857422, 52.842595 ], [ -133.527832, 56.764768 ], [ -126.848145, 58.043004 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81227ffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 21433226, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 21433226, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -97.482602, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -97.482602, "tippecanoe:min:LABEL_X": -97.482602, "tippecanoe:max:LABEL_X": -97.482602, "tippecanoe:sum:LABEL_Y": 39.538479, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 39.538479, "tippecanoe:min:LABEL_Y": 39.538479, "tippecanoe:max:LABEL_Y": 39.538479, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 24, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:sum:NE_ID": 1159321369, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159321369, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:sum:POP_EST": 328239523, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 328239523, "tippecanoe:min:POP_EST": 328239523, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424977, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424977, "tippecanoe:min:WOE_ID": 23424977, "tippecanoe:max:WOE_ID": 23424977, "tippecanoe:sum:WOE_ID_EH": 23424977, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424977, "tippecanoe:min:WOE_ID_EH": 23424977, "tippecanoe:max:WOE_ID_EH": 23424977, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.055664, 52.119999 ], [ -171.870117, 49.052270 ], [ -173.254395, 44.746733 ], [ -179.165039, 43.341160 ], [ -184.372559, 46.179830 ], [ -183.691406, 50.639010 ], [ -177.055664, 52.119999 ] ] ], [ [ [ 182.944336, 52.119999 ], [ 188.129883, 49.052270 ], [ 186.745605, 44.746733 ], [ 180.834961, 43.341160 ], [ 175.627441, 46.179830 ], [ 176.308594, 50.639010 ], [ 182.944336, 52.119999 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81293ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 59706400, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 4471, "tippecanoe:sum:GDP_MD": 355902, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849935, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849935, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 55.132998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -56.242452, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321289, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 29853200, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 177951, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424967.5, "tippecanoe:mean:WOE_ID_EH": 23424967.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 15.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 27.566499, "tippecanoe:mean:LABEL_Y": -28.121226, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.706543, 36.580247 ], [ -118.806152, 32.787275 ], [ -121.333008, 28.652031 ], [ -126.430664, 28.323725 ], [ -129.287109, 31.952162 ], [ -127.133789, 36.084621 ], [ -121.706543, 36.580247 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "8188bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.337891, 1.669686 ], [ -143.393555, -1.713612 ], [ -144.975586, -5.812757 ], [ -149.392090, -6.664608 ], [ -152.402344, -3.425692 ], [ -150.908203, 0.790990 ], [ -146.337891, 1.669686 ] ] ] } } +{ "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": "81273ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.569336, 55.216490 ], [ -90.659180, 54.303704 ], [ -88.659668, 49.809632 ], [ -93.405762, 46.634351 ], [ -99.909668, 47.472663 ], [ -102.897949, 51.563412 ], [ -98.569336, 55.216490 ] ] ] } } +{ "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": "81707ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -161.762695, 6.773716 ], [ -158.598633, 3.337954 ], [ -159.938965, -0.944781 ], [ -164.245605, -1.779499 ], [ -167.321777, 1.515936 ], [ -166.179199, 5.769036 ], [ -161.762695, 6.773716 ] ] ] } } +{ "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": "810dbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 188.898926, 71.972189 ], [ 196.127930, 68.220523 ], [ 190.898438, 64.215937 ], [ 180.878906, 63.292939 ], [ 172.858887, 66.196009 ], [ 174.748535, 70.794139 ], [ 188.898926, 71.972189 ] ] ], [ [ [ -171.101074, 71.972189 ], [ -163.872070, 68.220523 ], [ -169.101562, 64.215937 ], [ -179.121094, 63.292939 ], [ -187.141113, 66.196009 ], [ -185.251465, 70.794139 ], [ -171.101074, 71.972189 ] ] ] ] } } +{ "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": "8170fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.321777, 1.515936 ], [ -164.245605, -1.779499 ], [ -165.410156, -5.769036 ], [ -169.716797, -6.402648 ], [ -170.903320, -4.850154 ], [ -172.353516, -3.294082 ], [ -171.364746, 0.659165 ], [ -167.321777, 1.515936 ] ] ] } } +{ "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": "8171bffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:max:GDP_MD": 898, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:max:POP_EST": 4490, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "81487ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.269043, 32.861132 ], [ -110.654297, 28.729130 ], [ -113.466797, 24.666986 ], [ -118.630371, 24.666986 ], [ -121.333008, 28.652031 ], [ -118.806152, 32.787275 ], [ -113.269043, 32.861132 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81447ffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 206928, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 206928, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:max:GDP_MD": 206928, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 172.787, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 172.787, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:sum:LABEL_Y": -39.759, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -39.759, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:max:LABEL_Y": -39.759, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:sum:MIN_LABEL": 2, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 1159321135, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159321135, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:sum:POP_EST": 4917000, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4917000, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:max:POP_EST": 4917000, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424916, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": 23424916, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID_EH": 23424916, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424916, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "81297ffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2125268, "tippecanoe:sum:POP_EST": 6923495, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 36, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 18340, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 33082, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 70274622, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 70274622, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 25.5, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 28.246639, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 69.534021, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -72.15809, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 3477962573, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 2307831.6666666667, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 11027.333333333334, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424874, "tippecanoe:mean:WOE_ID_EH": 23424874, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 7.333333333333333, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.6666666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 23.178006999999999, "tippecanoe:mean:LABEL_Y": -24.052696666666667, "tippecanoe:mean:NE_ID": 1159320857.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.231934, 39.436193 ], [ -127.133789, 36.084621 ], [ -129.287109, 31.952162 ], [ -134.099121, 31.278551 ], [ -137.175293, 34.759666 ], [ -136.208496, 36.544949 ], [ -135.329590, 38.548165 ], [ -130.231934, 39.436193 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81457ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.746094, 27.254630 ], [ -89.802246, 26.431228 ], [ -88.286133, 22.126355 ], [ -91.362305, 18.625425 ], [ -96.042480, 19.269665 ], [ -97.910156, 23.584126 ], [ -94.746094, 27.254630 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "811d3ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 4941444, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 5407660, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 37, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 388698, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 419053, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8074, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424803, "tippecanoe:sum:WOE_ID": 93699292, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699292, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 37, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -7.058429, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -72.865979, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 53.078726, "tippecanoe:sum:LABEL_Y": 254.36300300000006, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 4637282894, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 2.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 8.75, "tippecanoe:mean:POP_EST": 1351915, "tippecanoe:mean:POP_RANK": 9.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 104763.25, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424823, "tippecanoe:mean:WOE_ID_EH": 23424823, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 9.25, "tippecanoe:mean:ABBREV_LEN": 6.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.675, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": -18.21649475, "tippecanoe:mean:LABEL_Y": 63.59075075000001, "tippecanoe:mean:NE_ID": 1159320723.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.680176, 59.164668 ], [ -133.527832, 56.764768 ], [ -133.857422, 52.842595 ], [ -138.999023, 51.522416 ], [ -142.448730, 52.975108 ], [ -144.426270, 53.212612 ], [ -145.612793, 56.571589 ], [ -139.680176, 59.164668 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81783ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.956543, 4.149201 ], [ -130.451660, 0.834931 ], [ -132.099609, -3.162456 ], [ -136.274414, -4.039618 ], [ -138.955078, -0.834931 ], [ -137.307129, 3.381824 ], [ -132.956543, 4.149201 ] ] ] } } +{ "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": "810c3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.872070, 68.220523 ], [ -152.094727, 67.933397 ], [ -149.194336, 63.947025 ], [ -155.368652, 60.705448 ], [ -164.069824, 60.726944 ], [ -169.101562, 64.215937 ], [ -163.872070, 68.220523 ] ] ] } } +{ "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": "810d7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.910156, 71.081182 ], [ -131.704102, 69.372573 ], [ -132.517090, 65.062868 ], [ -136.538086, 64.177679 ], [ -140.405273, 62.915233 ], [ -149.194336, 63.947025 ], [ -152.094727, 67.933397 ], [ -142.910156, 71.081182 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81263ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 20, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 17, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 356333, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 7912, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8073, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 93699362, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 93699362, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -92, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 18, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 40, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 583.252187, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 42.948166, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 4637284582, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.75, "tippecanoe:mean:MAPCOLOR8": 4.25, "tippecanoe:mean:MAPCOLOR9": 1.75, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:mean:POP_EST": 89083.25, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1978, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23424840.5, "tippecanoe:mean:WOE_ID_EH": 23424840.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 15.75, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -23, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.81304675, "tippecanoe:mean:LABEL_Y": 10.7370415, "tippecanoe:mean:NE_ID": 1159321145.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.909668, 47.472663 ], [ -93.405762, 46.634351 ], [ -91.472168, 42.439674 ], [ -92.812500, 41.459195 ], [ -95.251465, 39.334297 ], [ -101.030273, 40.094882 ], [ -103.535156, 44.087585 ], [ -102.326660, 45.197522 ], [ -99.909668, 47.472663 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "816f3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.234863, 1.537901 ], [ -113.906250, 1.340210 ], [ -111.840820, -2.174771 ], [ -114.038086, -5.244128 ], [ -118.125000, -4.981505 ], [ -120.256348, -1.691649 ], [ -118.234863, 1.537901 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81283ffffffffff", "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 71, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 61, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 73, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 70, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 112, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 431702297.3, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 249, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 36337, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 402757, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36329, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 351373220, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 374798259, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 142, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 162, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 83, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1580, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 18, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 59.400000000000009, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 148.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 673.251737, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": -18.91164, "tippecanoe:sum:LABEL_Y": -59.005614, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 20867779388, "tippecanoe:mean:scalerank": 0.4444444444444444, "tippecanoe:mean:LABELRANK": 3.9444444444444448, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.388888888888889, "tippecanoe:mean:MAPCOLOR8": 4.055555555555555, "tippecanoe:mean:MAPCOLOR9": 3.888888888888889, "tippecanoe:mean:MAPCOLOR13": 6.222222222222222, "tippecanoe:mean:POP_EST": 23983460.961111115, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2018.7222222222222, "tippecanoe:mean:GDP_MD": 22375.38888888889, "tippecanoe:mean:GDP_YEAR": 2018.2777777777779, "tippecanoe:mean:WOE_ID": 19520734.444444445, "tippecanoe:mean:WOE_ID_EH": 20822125.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.888888888888889, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4.611111111111111, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.2222222222222222, "tippecanoe:mean:MIN_LABEL": 3.3000000000000004, "tippecanoe:mean:MAX_LABEL": 8.261111111111111, "tippecanoe:mean:LABEL_X": 37.402874277777787, "tippecanoe:mean:LABEL_Y": -3.278089666666667, "tippecanoe:mean:NE_ID": 1159321077.1111112, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124023, 44.056012 ], [ -119.003906, 40.563895 ], [ -121.706543, 36.580247 ], [ -127.133789, 36.084621 ], [ -130.231934, 39.436193 ], [ -127.968750, 43.421009 ], [ -122.124023, 44.056012 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "810ebffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.437988, 63.253412 ], [ -86.440430, 62.186014 ], [ -84.550781, 57.527622 ], [ -90.659180, 54.303704 ], [ -98.569336, 55.216490 ], [ -102.128906, 59.467408 ], [ -96.437988, 63.253412 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "8128bffffffffff", "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 214757916, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 425407, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549045, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549045, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 53, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -493, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51.5, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 494.7071010000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 127.14571000000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955925022, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": -9.333333333333334, "tippecanoe:mean:POP_EST": 35792986, "tippecanoe:mean:POP_RANK": 12.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 70901.16666666667, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424840.833333333, "tippecanoe:mean:WOE_ID_EH": 23424840.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.833333333333334, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82.16666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.9166666666666667, "tippecanoe:mean:MAX_LABEL": 8.583333333333334, "tippecanoe:mean:LABEL_X": 82.45118350000002, "tippecanoe:mean:LABEL_Y": 21.190951666666668, "tippecanoe:mean:NE_ID": 1159320837, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.785645, 48.004625 ], [ -109.797363, 44.418088 ], [ -113.049316, 40.713956 ], [ -119.003906, 40.563895 ], [ -122.124023, 44.056012 ], [ -119.223633, 47.798397 ], [ -112.785645, 48.004625 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "810cbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.101562, 64.215937 ], [ -164.069824, 60.726944 ], [ -168.024902, 56.992883 ], [ -175.737305, 56.194481 ], [ -181.428223, 59.029249 ], [ -179.121094, 63.292939 ], [ -169.101562, 64.215937 ] ] ], [ [ [ 190.898438, 64.215937 ], [ 195.930176, 60.726944 ], [ 191.975098, 56.992883 ], [ 184.262695, 56.194481 ], [ 178.571777, 59.029249 ], [ 180.878906, 63.292939 ], [ 190.898438, 64.215937 ] ] ] ] } } +{ "type": "Feature", "properties": { "bin": "811d7ffffffffff", "tippecanoe:count:scalerank": 25, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 25, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 117, "tippecanoe:count:ADM0_DIF": 25, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 25, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 50, "tippecanoe:count:GEOU_DIF": 25, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 25, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 25, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 25, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 79, "tippecanoe:count:MAPCOLOR8": 25, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 88, "tippecanoe:count:MAPCOLOR9": 25, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 83, "tippecanoe:count:MAPCOLOR13": 25, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 153, "tippecanoe:count:POP_EST": 25, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 295370555, "tippecanoe:count:POP_RANK": 25, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 304, "tippecanoe:count:POP_YEAR": 25, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 50473, "tippecanoe:count:GDP_MD": 25, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 7538152, "tippecanoe:count:GDP_YEAR": 25, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 50457, "tippecanoe:count:WOE_ID": 25, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 511991283, "tippecanoe:count:WOE_ID_EH": 25, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 584875547, "tippecanoe:count:ADM0_A3_UN": 25, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2475, "tippecanoe:count:ADM0_A3_WB": 25, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2475, "tippecanoe:count:NAME_LEN": 25, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 208, "tippecanoe:count:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 226, "tippecanoe:count:ABBREV_LEN": 25, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 117, "tippecanoe:count:TINY": 25, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2060, "tippecanoe:count:HOMEPART": 25, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -175, "tippecanoe:count:MIN_ZOOM": 25, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 25, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 102.1, "tippecanoe:count:MAX_LABEL": 25, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 221.5, "tippecanoe:count:LABEL_X": 25, "tippecanoe:max:LABEL_X": 25.15709, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 240.679746, "tippecanoe:count:LABEL_Y": 25, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 1065.060767, "tippecanoe:count:NE_ID": 25, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 28983020085, "tippecanoe:mean:scalerank": 0.64, "tippecanoe:mean:LABELRANK": 4.68, "tippecanoe:mean:ADM0_DIF": 0.12, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.04, "tippecanoe:mean:MAPCOLOR7": 3.16, "tippecanoe:mean:MAPCOLOR8": 3.52, "tippecanoe:mean:MAPCOLOR9": 3.32, "tippecanoe:mean:MAPCOLOR13": 6.12, "tippecanoe:mean:POP_EST": 11814822.2, "tippecanoe:mean:POP_RANK": 12.16, "tippecanoe:mean:POP_YEAR": 2018.92, "tippecanoe:mean:GDP_MD": 301526.08, "tippecanoe:mean:GDP_YEAR": 2018.28, "tippecanoe:mean:WOE_ID": 20479651.32, "tippecanoe:mean:WOE_ID_EH": 23395021.88, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.32, "tippecanoe:mean:LONG_LEN": 9.04, "tippecanoe:mean:ABBREV_LEN": 4.68, "tippecanoe:mean:TINY": -82.4, "tippecanoe:mean:HOMEPART": -7, "tippecanoe:mean:MIN_ZOOM": 0.188, "tippecanoe:mean:MIN_LABEL": 4.084, "tippecanoe:mean:MAX_LABEL": 8.86, "tippecanoe:mean:LABEL_X": 9.62718984, "tippecanoe:mean:LABEL_Y": 42.60243068, "tippecanoe:mean:NE_ID": 1159320803.4, "tippecanoe:count": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.857422, 52.842595 ], [ -128.913574, 50.148746 ], [ -131.286621, 46.422713 ], [ -136.691895, 45.336702 ], [ -140.053711, 47.857403 ], [ -138.911133, 50.317408 ], [ -138.999023, 51.522416 ], [ -133.857422, 52.842595 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "81137ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.832520, 67.533772 ], [ -96.437988, 63.253412 ], [ -102.128906, 59.467408 ], [ -110.961914, 59.512029 ], [ -116.455078, 63.194018 ], [ -112.543945, 67.415927 ], [ -100.832520, 67.533772 ] ] ] } } +{ "type": "Feature", "properties": { "bin": "81373ffffffffff", "tippecanoe:count:scalerank": 12, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 12, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 50, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 12, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 24, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 36, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 76, "tippecanoe:count:POP_EST": 12, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 110589, "tippecanoe:sum:POP_EST": 304418803, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 146, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:GDP_MD": 12, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 824, "tippecanoe:sum:GDP_MD": 3541305, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 24223, "tippecanoe:count:WOE_ID": 12, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 234248644, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 282223543, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 114, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 128, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 12, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -779, "tippecanoe:count:HOMEPART": 12, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 45.2, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 104.2, "tippecanoe:count:LABEL_X": 12, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -72.90016, "tippecanoe:sum:LABEL_X": -672.618505, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": 90.419529, "tippecanoe:count:NE_ID": 12, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 13911851950, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 25368233.583333333, "tippecanoe:mean:POP_RANK": 12.166666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 295108.75, "tippecanoe:mean:GDP_YEAR": 2018.5833333333333, "tippecanoe:mean:WOE_ID": 19520720.333333333, "tippecanoe:mean:WOE_ID_EH": 23518628.583333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4.916666666666667, "tippecanoe:mean:TINY": -64.91666666666667, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.766666666666667, "tippecanoe:mean:MAX_LABEL": 8.683333333333334, "tippecanoe:mean:LABEL_X": -56.05154208333334, "tippecanoe:mean:LABEL_Y": 7.53496075, "tippecanoe:mean:NE_ID": 1159320995.8333333, "tippecanoe:count": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.458496, 44.087585 ], [ -143.854980, 41.211722 ], [ -145.744629, 37.683820 ], [ -151.127930, 37.037640 ], [ -154.775391, 39.909736 ], [ -153.039551, 43.436966 ], [ -147.458496, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "bin": "810fbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.680664, 71.230221 ], [ -79.299316, 69.854762 ], [ -78.068848, 65.183030 ], [ -86.440430, 62.186014 ], [ -96.437988, 63.253412 ], [ -100.832520, 67.533772 ], [ -92.680664, 71.230221 ] ] ] } } +{ "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": "81787ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.474609, 1.625758 ], [ -124.299316, -1.450040 ], [ -125.881348, -5.222247 ], [ -129.704590, -6.140555 ], [ -132.099609, -3.162456 ], [ -130.451660, 0.834931 ], [ -126.474609, 1.625758 ] ] ] } } +{ "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": "816d3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.042480, 19.269665 ], [ -91.362305, 18.625425 ], [ -89.868164, 14.455958 ], [ -92.746582, 10.962764 ], [ -97.207031, 11.415418 ], [ -99.008789, 15.559544 ], [ -96.042480, 19.269665 ] ] ] } } +{ "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": "816fbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.599121, 4.784469 ], [ -107.094727, 4.543570 ], [ -105.183105, 0.878872 ], [ -107.797852, -2.569939 ], [ -109.709473, -2.284551 ], [ -111.840820, -2.174771 ], [ -113.906250, 1.340210 ], [ -111.599121, 4.784469 ] ] ] } } +{ "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": "816d7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.868164, 14.455958 ], [ -85.627441, 13.838080 ], [ -83.847656, 10.077037 ], [ -86.594238, 6.599131 ], [ -91.120605, 7.057282 ], [ -92.241211, 9.644077 ], [ -92.746582, 10.962764 ], [ -89.868164, 14.455958 ] ] ] } } +{ "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": "81267ffffffffff", "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 19043, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 3173.8333333333337, "tippecanoe:min:GDP_MD": 60, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 333.61664800000008, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 55.602774666666679, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:sum:LABEL_Y": -74.757852, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": -12.459642, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 72, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 31, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 5.166666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 34, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 24.3, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 4.05, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 64, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:sum:NE_ID": 6955925566, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320927.6666668, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:sum:POP_EST": 2276622, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 379437, "tippecanoe:min:POP_EST": 11558, "tippecanoe:max:POP_EST": 889953, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 9.5, "tippecanoe:min:POP_RANK": 6, "tippecanoe:max:POP_RANK": 11, "tippecanoe:sum:POP_YEAR": 12113, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2018.8333333333333, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -290, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -48.333333333333339, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 140549245, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424874.166666669, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:max:WOE_ID": 23424989, "tippecanoe:sum:WOE_ID_EH": 140549245, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424874.166666669, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:max:WOE_ID_EH": 23424989, "tippecanoe:sum:scalerank": 12, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 2, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 5 }, "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": "810d3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.454590, 76.142958 ], [ -145.349121, 75.430979 ], [ -142.910156, 71.081182 ], [ -152.094727, 67.933397 ], [ -163.872070, 68.220523 ], [ -171.101074, 71.972189 ], [ -163.454590, 76.142958 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8102fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.261719, 75.425451 ], [ -92.680664, 71.230221 ], [ -100.832520, 67.533772 ], [ -112.543945, 67.415927 ], [ -120.278320, 70.851881 ], [ -115.598145, 75.135142 ], [ -98.261719, 75.425451 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811dbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.709961, 57.136239 ], [ -145.612793, 56.571589 ], [ -144.426270, 53.212612 ], [ -147.568359, 51.508742 ], [ -148.403320, 50.429518 ], [ -153.786621, 50.527397 ], [ -157.280273, 54.007769 ], [ -152.709961, 57.136239 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8122bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 54.007769 ], [ -153.786621, 50.527397 ], [ -156.027832, 46.905246 ], [ -161.564941, 46.513516 ], [ -165.607910, 49.894634 ], [ -163.674316, 53.774689 ], [ -157.280273, 54.007769 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81507ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.988770, 27.469287 ], [ -133.088379, 23.825551 ], [ -134.890137, 19.746024 ], [ -139.614258, 19.228177 ], [ -142.712402, 22.877440 ], [ -140.910645, 27.059126 ], [ -135.988770, 27.469287 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81377ffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:max:GDP_MD": 31, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:max:POP_EST": 4534, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "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": 12, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 4.833333333333333, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 824875, "tippecanoe:count:GDP_MD": 12, "tippecanoe:mean:GDP_MD": 68739.58333333333, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:max:GDP_MD": 323615, "tippecanoe:sum:GDP_YEAR": 24226, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:HOMEPART": 12, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 51, "tippecanoe:count:LABELRANK": 12, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -992.3850929999999, "tippecanoe:count:LABEL_X": 12, "tippecanoe:mean:LABEL_X": -82.69875774999999, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:max:LABEL_X": -73.174347, "tippecanoe:sum:LABEL_Y": 153.027195, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:mean:LABEL_Y": 12.75226625, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:sum:LEVEL": 23, "tippecanoe:count:LEVEL": 12, "tippecanoe:mean:LEVEL": 1.9166666666666668, "tippecanoe:min:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 99, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:mean:LONG_LEN": 8.25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 70, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 28, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 105, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 45.7, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:mean:MIN_LABEL": 3.8083333333333337, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 95, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:mean:NAME_LEN": 7.916666666666667, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 13911849352, "tippecanoe:count:NE_ID": 12, "tippecanoe:mean:NE_ID": 1159320779.3333333, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:sum:POP_EST": 131093366, "tippecanoe:count:POP_EST": 12, "tippecanoe:mean:POP_EST": 10924447.166666666, "tippecanoe:min:POP_EST": 64948, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:sum:POP_RANK": 152, "tippecanoe:count:POP_RANK": 12, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -984, "tippecanoe:count:TINY": 12, "tippecanoe:mean:TINY": -82, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 281097894, "tippecanoe:count:WOE_ID": 12, "tippecanoe:mean:WOE_ID": 23424824.5, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:sum:WOE_ID_EH": 281097894, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:mean:WOE_ID_EH": 23424824.5, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:scalerank": 12, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:max:POP_EST": 279287, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 10, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "81297ffffffffff", "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 33082, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 11027.333333333334, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:max:GDP_MD": 18340, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 69.534021, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": 23.178006999999999, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:max:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_Y": -72.15809, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -24.052696666666667, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 7.333333333333333, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 3.6666666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 25.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 11, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.6666666666666667, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 3477962573, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1159320857.6666668, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:sum:POP_EST": 6923495, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 2307831.6666666667, "tippecanoe:min:POP_EST": 2125268, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:sum:POP_RANK": 36, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 70274622, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 23424874, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID_EH": 70274622, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 23424874, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.231934, 39.436193 ], [ -127.133789, 36.084621 ], [ -129.287109, 31.952162 ], [ -134.099121, 31.278551 ], [ -137.175293, 34.759666 ], [ -136.208496, 36.544949 ], [ -135.329590, 38.548165 ], [ -130.231934, 39.436193 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811d3ffffffffff", "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 6.75, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 419053, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 104763.25, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:max:GDP_MD": 388698, "tippecanoe:sum:GDP_YEAR": 8074, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -72.865979, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": -18.21649475, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:max:LABEL_X": -7.058429, "tippecanoe:sum:LABEL_Y": 254.36300300000006, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 63.59075075000001, "tippecanoe:min:LABEL_Y": 53.078726, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 37, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 9.25, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 8.75, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 2.25, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 2.675, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:sum:NE_ID": 4637282894, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159320723.5, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:sum:POP_EST": 5407660, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 1351915, "tippecanoe:min:POP_EST": 48678, "tippecanoe:max:POP_EST": 4941444, "tippecanoe:sum:POP_RANK": 37, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 9.25, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -294, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -73.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 93699292, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424803, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:sum:WOE_ID_EH": 93699292, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.680176, 59.164668 ], [ -133.527832, 56.764768 ], [ -133.857422, 52.842595 ], [ -138.999023, 51.522416 ], [ -142.448730, 52.975108 ], [ -144.426270, 53.212612 ], [ -145.612793, 56.571589 ], [ -139.680176, 59.164668 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8126bffffffffff", "tippecanoe:count": 11, "tippecanoe:sum:ABBREV_LEN": 64, "tippecanoe:count:ABBREV_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 5.818181818181818, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:sum:ADM0_A3_UN": -1089, "tippecanoe:count:ADM0_A3_UN": 11, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1089, "tippecanoe:count:ADM0_A3_WB": 11, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 11, "tippecanoe:mean:ADM0_DIF": 0.09090909090909091, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 11, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 5763900, "tippecanoe:count:GDP_MD": 11, "tippecanoe:mean:GDP_MD": 523990.9090909091, "tippecanoe:min:GDP_MD": 35, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:sum:GDP_YEAR": 22206, "tippecanoe:count:GDP_YEAR": 11, "tippecanoe:mean:GDP_YEAR": 2018.7272727272728, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 11, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -89, "tippecanoe:count:HOMEPART": 11, "tippecanoe:mean:HOMEPART": -8.090909090909092, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 40, "tippecanoe:count:LABELRANK": 11, "tippecanoe:mean:LABELRANK": 3.6363636363636364, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 1168.831836, "tippecanoe:count:LABEL_X": 11, "tippecanoe:mean:LABEL_X": 106.25743963636364, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_Y": 71.66068499999997, "tippecanoe:count:LABEL_Y": 11, "tippecanoe:mean:LABEL_Y": 6.5146077272727249, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:sum:LEVEL": 22, "tippecanoe:count:LEVEL": 11, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 117, "tippecanoe:count:LONG_LEN": 11, "tippecanoe:mean:LONG_LEN": 10.636363636363637, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 71, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:mean:MAPCOLOR13": 6.454545454545454, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 35, "tippecanoe:count:MAPCOLOR7": 11, "tippecanoe:mean:MAPCOLOR7": 3.1818181818181818, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR8": 11, "tippecanoe:mean:MAPCOLOR8": 3.5454545454545456, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR9": 11, "tippecanoe:mean:MAPCOLOR9": 4.636363636363637, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 88.9, "tippecanoe:count:MAX_LABEL": 11, "tippecanoe:mean:MAX_LABEL": 8.081818181818182, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 34.6, "tippecanoe:count:MIN_LABEL": 11, "tippecanoe:mean:MIN_LABEL": 3.1454545454545457, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 11, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 99, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:sum:NE_ID": 12752530669, "tippecanoe:count:NE_ID": 11, "tippecanoe:mean:NE_ID": 1159320969.909091, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:sum:POP_EST": 1924699618, "tippecanoe:count:POP_EST": 11, "tippecanoe:mean:POP_EST": 174972692.54545454, "tippecanoe:min:POP_EST": 2387, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:sum:POP_RANK": 152, "tippecanoe:count:POP_RANK": 11, "tippecanoe:mean:POP_RANK": 13.818181818181819, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:sum:POP_YEAR": 22206, "tippecanoe:count:POP_YEAR": 11, "tippecanoe:mean:POP_YEAR": 2018.7272727272728, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 11, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -886, "tippecanoe:count:TINY": 11, "tippecanoe:mean:TINY": -80.54545454545455, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 234248627, "tippecanoe:count:WOE_ID": 11, "tippecanoe:mean:WOE_ID": 21295329.727272728, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID_EH": 257673586, "tippecanoe:count:WOE_ID_EH": 11, "tippecanoe:mean:WOE_ID_EH": 23424871.454545455, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:sum:scalerank": 9, "tippecanoe:count:scalerank": 11, "tippecanoe:mean:scalerank": 0.8181818181818182, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "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": "81263ffffffffff", "tippecanoe:count": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 7912, "tippecanoe:count:GDP_MD": 4, "tippecanoe:mean:GDP_MD": 1978, "tippecanoe:min:GDP_MD": 268, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:sum:GDP_YEAR": 8073, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:HOMEPART": 4, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:LABELRANK": 4, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 583.252187, "tippecanoe:count:LABEL_X": 4, "tippecanoe:mean:LABEL_X": 145.81304675, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_Y": 42.948166, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:mean:LABEL_Y": 10.7370415, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:LEVEL": 4, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:mean:LONG_LEN": 15.75, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR7": 3.75, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 17, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR8": 4.25, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR9": 1.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 40, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 18, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:sum:NE_ID": 4637284582, "tippecanoe:count:NE_ID": 4, "tippecanoe:mean:NE_ID": 1159321145.5, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:sum:POP_EST": 356333, "tippecanoe:count:POP_EST": 4, "tippecanoe:mean:POP_EST": 89083.25, "tippecanoe:min:POP_EST": 18008, "tippecanoe:max:POP_EST": 167294, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_RANK": 4, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:min:POP_RANK": 6, "tippecanoe:max:POP_RANK": 9, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -92, "tippecanoe:count:TINY": 4, "tippecanoe:mean:TINY": -23, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 93699362, "tippecanoe:count:WOE_ID": 4, "tippecanoe:mean:WOE_ID": 23424840.5, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID_EH": 93699362, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:mean:WOE_ID_EH": 23424840.5, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:sum:scalerank": 20, "tippecanoe:count:scalerank": 4, "tippecanoe:mean:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.909668, 47.472663 ], [ -93.405762, 46.634351 ], [ -91.472168, 42.439674 ], [ -92.812500, 41.459195 ], [ -95.251465, 39.334297 ], [ -101.030273, 40.094882 ], [ -103.535156, 44.087585 ], [ -102.326660, 45.197522 ], [ -99.909668, 47.472663 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81367ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -137.175293, 34.759666 ], [ -134.099121, 31.278551 ], [ -135.988770, 27.469287 ], [ -140.910645, 27.059126 ], [ -144.162598, 30.562261 ], [ -142.316895, 34.452218 ], [ -137.175293, 34.759666 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8113bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.517090, 65.062868 ], [ -125.332031, 62.237233 ], [ -126.848145, 58.043004 ], [ -133.527832, 56.764768 ], [ -139.680176, 59.164668 ], [ -140.405273, 62.915233 ], [ -136.538086, 64.177679 ], [ -132.517090, 65.062868 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8122fffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "81793ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.901367, 11.888853 ], [ -131.264648, 8.320212 ], [ -132.956543, 4.149201 ], [ -137.307129, 3.381824 ], [ -140.119629, 6.860985 ], [ -138.427734, 11.221510 ], [ -133.901367, 11.888853 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81283ffffffffff", "tippecanoe:count": 18, "tippecanoe:sum:ABBREV_LEN": 83, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:mean:ABBREV_LEN": 4.611111111111111, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 402757, "tippecanoe:count:GDP_MD": 18, "tippecanoe:mean:GDP_MD": 22375.38888888889, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:sum:GDP_YEAR": 36329, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:mean:GDP_YEAR": 2018.2777777777779, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 18, "tippecanoe:count:HOMEPART": 18, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 71, "tippecanoe:count:LABELRANK": 18, "tippecanoe:mean:LABELRANK": 3.9444444444444448, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 673.251737, "tippecanoe:count:LABEL_X": 18, "tippecanoe:mean:LABEL_X": 37.402874277777787, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_Y": -59.005614, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:mean:LABEL_Y": -3.278089666666667, "tippecanoe:min:LABEL_Y": -18.91164, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:LEVEL": 18, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 162, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 112, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:mean:MAPCOLOR13": 6.222222222222222, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 61, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:mean:MAPCOLOR7": 3.388888888888889, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 73, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:mean:MAPCOLOR8": 4.055555555555555, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR9": 70, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:mean:MAPCOLOR9": 3.888888888888889, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 148.7, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:mean:MAX_LABEL": 8.261111111111111, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 59.400000000000009, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:mean:MIN_LABEL": 3.3000000000000004, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:mean:MIN_ZOOM": 0.2222222222222222, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:sum:NAME_LEN": 142, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:mean:NAME_LEN": 7.888888888888889, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:sum:NE_ID": 20867779388, "tippecanoe:count:NE_ID": 18, "tippecanoe:mean:NE_ID": 1159321077.1111112, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:sum:POP_EST": 431702297.3, "tippecanoe:count:POP_EST": 18, "tippecanoe:mean:POP_EST": 23983460.961111115, "tippecanoe:min:POP_EST": 97625, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:sum:POP_RANK": 249, "tippecanoe:count:POP_RANK": 18, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:min:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 36337, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:mean:POP_YEAR": 2018.7222222222222, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1580, "tippecanoe:count:TINY": 18, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 351373220, "tippecanoe:count:WOE_ID": 18, "tippecanoe:mean:WOE_ID": 19520734.444444445, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:sum:WOE_ID_EH": 374798259, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:mean:WOE_ID_EH": 20822125.5, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 18, "tippecanoe:mean:scalerank": 0.4444444444444444, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124023, 44.056012 ], [ -119.003906, 40.563895 ], [ -121.706543, 36.580247 ], [ -127.133789, 36.084621 ], [ -130.231934, 39.436193 ], [ -127.968750, 43.421009 ], [ -122.124023, 44.056012 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8128bffffffffff", "tippecanoe:count": 6, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 425407, "tippecanoe:count:GDP_MD": 6, "tippecanoe:mean:GDP_MD": 70901.16666666667, "tippecanoe:min:GDP_MD": 15, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:HOMEPART": 6, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:LABELRANK": 6, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 494.7071010000001, "tippecanoe:count:LABEL_X": 6, "tippecanoe:mean:LABEL_X": 82.45118350000002, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:sum:LABEL_Y": 127.14571000000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:mean:LABEL_Y": 21.190951666666668, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:LEVEL": 6, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:mean:MAPCOLOR13": -9.333333333333334, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 51.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:mean:MAX_LABEL": 8.583333333333334, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 23.5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:mean:MIN_LABEL": 3.9166666666666667, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 53, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:mean:NAME_LEN": 8.833333333333334, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:sum:NE_ID": 6955925022, "tippecanoe:count:NE_ID": 6, "tippecanoe:mean:NE_ID": 1159320837, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:sum:POP_EST": 214757916, "tippecanoe:count:POP_EST": 6, "tippecanoe:mean:POP_EST": 35792986, "tippecanoe:min:POP_EST": 6000, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_RANK": 6, "tippecanoe:mean:POP_RANK": 12.333333333333334, "tippecanoe:min:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -493, "tippecanoe:count:TINY": 6, "tippecanoe:mean:TINY": -82.16666666666667, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 140549045, "tippecanoe:count:WOE_ID": 6, "tippecanoe:mean:WOE_ID": 23424840.833333333, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:sum:WOE_ID_EH": 140549045, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:mean:WOE_ID_EH": 23424840.833333333, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:scalerank": 6, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.785645, 48.004625 ], [ -109.797363, 44.418088 ], [ -113.049316, 40.713956 ], [ -119.003906, 40.563895 ], [ -122.124023, 44.056012 ], [ -119.223633, 47.798397 ], [ -112.785645, 48.004625 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81517ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.890137, 19.746024 ], [ -132.143555, 16.066929 ], [ -133.901367, 11.888853 ], [ -138.427734, 11.221510 ], [ -141.372070, 14.881087 ], [ -139.614258, 19.228177 ], [ -134.890137, 19.746024 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8150fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.287109, 31.952162 ], [ -126.430664, 28.323725 ], [ -128.474121, 24.186847 ], [ -131.550293, 23.905927 ], [ -133.088379, 23.825551 ], [ -135.988770, 27.469287 ], [ -134.099121, 31.278551 ], [ -129.287109, 31.952162 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811d7ffffffffff", "tippecanoe:count": 25, "tippecanoe:sum:ABBREV_LEN": 117, "tippecanoe:count:ABBREV_LEN": 25, "tippecanoe:mean:ABBREV_LEN": 4.68, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -2475, "tippecanoe:count:ADM0_A3_UN": 25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -2475, "tippecanoe:count:ADM0_A3_WB": 25, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 25, "tippecanoe:mean:ADM0_DIF": 0.12, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 25, "tippecanoe:mean:BRK_DIFF": 0.04, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 7538152, "tippecanoe:count:GDP_MD": 25, "tippecanoe:mean:GDP_MD": 301526.08, "tippecanoe:min:GDP_MD": 907, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:sum:GDP_YEAR": 50457, "tippecanoe:count:GDP_YEAR": 25, "tippecanoe:mean:GDP_YEAR": 2018.28, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 25, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -175, "tippecanoe:count:HOMEPART": 25, "tippecanoe:mean:HOMEPART": -7, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 117, "tippecanoe:count:LABELRANK": 25, "tippecanoe:mean:LABELRANK": 4.68, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:sum:LABEL_X": 240.679746, "tippecanoe:count:LABEL_X": 25, "tippecanoe:mean:LABEL_X": 9.62718984, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:max:LABEL_X": 25.15709, "tippecanoe:sum:LABEL_Y": 1065.060767, "tippecanoe:count:LABEL_Y": 25, "tippecanoe:mean:LABEL_Y": 42.60243068, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:sum:LEVEL": 50, "tippecanoe:count:LEVEL": 25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 226, "tippecanoe:count:LONG_LEN": 25, "tippecanoe:mean:LONG_LEN": 9.04, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 153, "tippecanoe:count:MAPCOLOR13": 25, "tippecanoe:mean:MAPCOLOR13": 6.12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 79, "tippecanoe:count:MAPCOLOR7": 25, "tippecanoe:mean:MAPCOLOR7": 3.16, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 88, "tippecanoe:count:MAPCOLOR8": 25, "tippecanoe:mean:MAPCOLOR8": 3.52, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 83, "tippecanoe:count:MAPCOLOR9": 25, "tippecanoe:mean:MAPCOLOR9": 3.32, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 221.5, "tippecanoe:count:MAX_LABEL": 25, "tippecanoe:mean:MAX_LABEL": 8.86, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 102.1, "tippecanoe:count:MIN_LABEL": 25, "tippecanoe:mean:MIN_LABEL": 4.084, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_ZOOM": 25, "tippecanoe:mean:MIN_ZOOM": 0.188, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:sum:NAME_LEN": 208, "tippecanoe:count:NAME_LEN": 25, "tippecanoe:mean:NAME_LEN": 8.32, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 28983020085, "tippecanoe:count:NE_ID": 25, "tippecanoe:mean:NE_ID": 1159320803.4, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:sum:POP_EST": 295370555, "tippecanoe:count:POP_EST": 25, "tippecanoe:mean:POP_EST": 11814822.2, "tippecanoe:min:POP_EST": 38019, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:sum:POP_RANK": 304, "tippecanoe:count:POP_RANK": 25, "tippecanoe:mean:POP_RANK": 12.16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 50473, "tippecanoe:count:POP_YEAR": 25, "tippecanoe:mean:POP_YEAR": 2018.92, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 25, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -2060, "tippecanoe:count:TINY": 25, "tippecanoe:mean:TINY": -82.4, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 511991283, "tippecanoe:count:WOE_ID": 25, "tippecanoe:mean:WOE_ID": 20479651.32, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:sum:WOE_ID_EH": 584875547, "tippecanoe:count:WOE_ID_EH": 25, "tippecanoe:mean:WOE_ID_EH": 23395021.88, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:scalerank": 25, "tippecanoe:mean:scalerank": 0.64, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.857422, 52.842595 ], [ -128.913574, 50.148746 ], [ -131.286621, 46.422713 ], [ -136.691895, 45.336702 ], [ -140.053711, 47.857403 ], [ -138.911133, 50.317408 ], [ -138.999023, 51.522416 ], [ -133.857422, 52.842595 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81373ffffffffff", "tippecanoe:count": 12, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 4.916666666666667, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 3541305, "tippecanoe:count:GDP_MD": 12, "tippecanoe:mean:GDP_MD": 295108.75, "tippecanoe:min:GDP_MD": 824, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:sum:GDP_YEAR": 24223, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:mean:GDP_YEAR": 2018.5833333333333, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:HOMEPART": 12, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 50, "tippecanoe:count:LABELRANK": 12, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -672.618505, "tippecanoe:count:LABEL_X": 12, "tippecanoe:mean:LABEL_X": -56.05154208333334, "tippecanoe:min:LABEL_X": -72.90016, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:sum:LABEL_Y": 90.419529, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:mean:LABEL_Y": 7.53496075, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:sum:LEVEL": 24, "tippecanoe:count:LEVEL": 12, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 128, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:sum:MAPCOLOR13": 76, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 36, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 104.2, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:mean:MAX_LABEL": 8.683333333333334, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 45.2, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:mean:MIN_LABEL": 3.766666666666667, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 114, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:sum:NE_ID": 13911851950, "tippecanoe:count:NE_ID": 12, "tippecanoe:mean:NE_ID": 1159320995.8333333, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:sum:POP_EST": 304418803, "tippecanoe:count:POP_EST": 12, "tippecanoe:mean:POP_EST": 25368233.583333333, "tippecanoe:min:POP_EST": 110589, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:sum:POP_RANK": 146, "tippecanoe:count:POP_RANK": 12, "tippecanoe:mean:POP_RANK": 12.166666666666666, "tippecanoe:min:POP_RANK": 9, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -779, "tippecanoe:count:TINY": 12, "tippecanoe:mean:TINY": -64.91666666666667, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 234248644, "tippecanoe:count:WOE_ID": 12, "tippecanoe:mean:WOE_ID": 19520720.333333333, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:sum:WOE_ID_EH": 282223543, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:mean:WOE_ID_EH": 23518628.583333333, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:scalerank": 12, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.458496, 44.087585 ], [ -143.854980, 41.211722 ], [ -145.744629, 37.683820 ], [ -151.127930, 37.037640 ], [ -154.775391, 39.909736 ], [ -153.039551, 43.436966 ], [ -147.458496, 44.087585 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "810cfffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.069824, 60.726944 ], [ -155.368652, 60.705448 ], [ -152.709961, 57.136239 ], [ -157.280273, 54.007769 ], [ -163.674316, 53.774689 ], [ -166.003418, 55.416544 ], [ -168.024902, 56.992883 ], [ -164.069824, 60.726944 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81287ffffffffff", "tippecanoe:count": 16, "tippecanoe:sum:ABBREV_LEN": 86, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5.375, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 807434, "tippecanoe:count:GDP_MD": 16, "tippecanoe:mean:GDP_MD": 50464.625, "tippecanoe:min:GDP_MD": 418, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:sum:GDP_YEAR": 32304, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 16, "tippecanoe:count:HOMEPART": 16, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 60, "tippecanoe:count:LABELRANK": 16, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 116.745203, "tippecanoe:count:LABEL_X": 16, "tippecanoe:mean:LABEL_X": 7.2965751875, "tippecanoe:min:LABEL_X": -9.460379, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:sum:LABEL_Y": 97.89065400000003, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:mean:LABEL_Y": 6.118165875000002, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:max:LABEL_Y": 17.446195, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:LEVEL": 16, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 164, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:mean:LONG_LEN": 10.25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:sum:MAPCOLOR13": 108, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 52, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 46, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:mean:MAPCOLOR8": 2.875, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 60, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 134.7, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:mean:MAX_LABEL": 8.41875, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 54.900000000000009, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:mean:MIN_LABEL": 3.4312500000000005, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 137, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:mean:NAME_LEN": 8.5625, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:sum:NE_ID": 18549132476, "tippecanoe:count:NE_ID": 16, "tippecanoe:mean:NE_ID": 1159320779.75, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:sum:POP_EST": 413068848, "tippecanoe:count:POP_EST": 16, "tippecanoe:mean:POP_EST": 25816803, "tippecanoe:min:POP_EST": 215056, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:sum:POP_RANK": 219, "tippecanoe:count:POP_RANK": 16, "tippecanoe:mean:POP_RANK": 13.6875, "tippecanoe:min:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 32304, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1380, "tippecanoe:count:TINY": 16, "tippecanoe:mean:TINY": -86.25, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 374797545, "tippecanoe:count:WOE_ID": 16, "tippecanoe:mean:WOE_ID": 23424846.5625, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:sum:WOE_ID_EH": 374797545, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:mean:WOE_ID_EH": 23424846.5625, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 16, "tippecanoe:mean:scalerank": 0.1875, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "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": "81223ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.607910, 49.894634 ], [ -161.564941, 46.513516 ], [ -163.388672, 42.455888 ], [ -168.881836, 41.541478 ], [ -173.254395, 44.746733 ], [ -171.870117, 49.052270 ], [ -165.607910, 49.894634 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "810c7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -149.194336, 63.947025 ], [ -140.405273, 62.915233 ], [ -139.680176, 59.164668 ], [ -145.612793, 56.571589 ], [ -152.709961, 57.136239 ], [ -155.368652, 60.705448 ], [ -149.194336, 63.947025 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811cfffffffffff", "tippecanoe:count": 8, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 291526, "tippecanoe:count:GDP_MD": 8, "tippecanoe:mean:GDP_MD": 36440.75, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:sum:GDP_YEAR": 16152, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:HOMEPART": 8, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 31, "tippecanoe:count:LABELRANK": 8, "tippecanoe:mean:LABELRANK": 3.875, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": -107.7326, "tippecanoe:count:LABEL_X": 8, "tippecanoe:mean:LABEL_X": -13.466575, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_Y": 134.44802099999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:mean:LABEL_Y": 16.806002624999999, "tippecanoe:min:LABEL_Y": 8.617449, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:LEVEL": 8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 88, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:mean:MAPCOLOR7": 2.25, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 70, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 29.7, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:mean:MIN_LABEL": 3.7125, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 72, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:sum:NE_ID": 9274567670, "tippecanoe:count:NE_ID": 8, "tippecanoe:mean:NE_ID": 1159320958.75, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:sum:POP_EST": 56494501, "tippecanoe:count:POP_EST": 8, "tippecanoe:mean:POP_EST": 7061812.625, "tippecanoe:min:POP_EST": 549935, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:sum:POP_RANK": 102, "tippecanoe:count:POP_RANK": 8, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:min:POP_RANK": 11, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:SU_DIF": 8, "tippecanoe:mean:SU_DIF": 0.125, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 1, "tippecanoe:sum:TINY": -792, "tippecanoe:count:TINY": 8, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 187399089, "tippecanoe:count:WOE_ID": 8, "tippecanoe:mean:WOE_ID": 23424886.125, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:sum:WOE_ID_EH": 187399089, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:mean:WOE_ID_EH": 23424886.125, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 8, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.053711, 47.857403 ], [ -136.691895, 45.336702 ], [ -138.449707, 41.459195 ], [ -143.854980, 41.211722 ], [ -147.458496, 44.087585 ], [ -145.502930, 47.234490 ], [ -141.723633, 47.413220 ], [ -140.053711, 47.857403 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "811cbffffffffff", "tippecanoe:count": 14, "tippecanoe:sum:ABBREV_LEN": 96, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 6.857142857142857, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 9, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:mean:ADM0_DIF": 0.6428571428571429, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:mean:BRK_DIFF": 0.07142857142857143, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 238179, "tippecanoe:count:GDP_MD": 14, "tippecanoe:mean:GDP_MD": 17012.785714285714, "tippecanoe:min:GDP_MD": 44, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:sum:GDP_YEAR": 28223, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:mean:GDP_YEAR": 2015.9285714285714, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -886, "tippecanoe:count:HOMEPART": 14, "tippecanoe:mean:HOMEPART": -63.285714285714288, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 81, "tippecanoe:count:LABELRANK": 14, "tippecanoe:mean:LABELRANK": 5.785714285714286, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 10, "tippecanoe:sum:LABEL_X": -932.2607110000001, "tippecanoe:count:LABEL_X": 14, "tippecanoe:mean:LABEL_X": -66.5900507857143, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_Y": 307.87920399999998, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:mean:LABEL_Y": 21.991371714285714, "tippecanoe:min:LABEL_Y": 15.458829, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:LEVEL": 14, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 224, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:sum:MAPCOLOR13": 68, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:mean:MAPCOLOR13": 4.857142857142857, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR7": 63, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 60, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:mean:MAPCOLOR8": 4.285714285714286, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 68, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:mean:MAPCOLOR9": 4.857142857142857, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 133.5, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:mean:MAX_LABEL": 9.535714285714287, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 64.5, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:mean:MIN_LABEL": 4.607142857142857, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:mean:MIN_ZOOM": 0.35714285714285717, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 183, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:mean:NAME_LEN": 13.071428571428572, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 16230490162, "tippecanoe:count:NE_ID": 14, "tippecanoe:mean:NE_ID": 1159320725.857143, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:sum:POP_EST": 26047555, "tippecanoe:count:POP_EST": 14, "tippecanoe:mean:POP_EST": 1860539.642857143, "tippecanoe:min:POP_EST": 4649, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:sum:POP_RANK": 118, "tippecanoe:count:POP_RANK": 14, "tippecanoe:mean:POP_RANK": 8.428571428571429, "tippecanoe:min:POP_RANK": 4, "tippecanoe:max:POP_RANK": 14, "tippecanoe:sum:POP_YEAR": 28263, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:mean:POP_YEAR": 2018.7857142857143, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -563, "tippecanoe:count:TINY": 14, "tippecanoe:mean:TINY": -40.214285714285718, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 6, "tippecanoe:sum:WOE_ID": 337140586, "tippecanoe:count:WOE_ID": 14, "tippecanoe:mean:WOE_ID": 24081470.42857143, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:sum:WOE_ID_EH": 337140586, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:mean:WOE_ID_EH": 24081470.42857143, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:sum:scalerank": 35, "tippecanoe:count:scalerank": 14, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "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": "811c3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.426270, 53.212612 ], [ -142.448730, 52.975108 ], [ -138.999023, 51.522416 ], [ -138.911133, 50.317408 ], [ -140.053711, 47.857403 ], [ -141.723633, 47.413220 ], [ -145.502930, 47.234490 ], [ -146.755371, 48.092757 ], [ -148.403320, 50.429518 ], [ -147.568359, 51.508742 ], [ -144.426270, 53.212612 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8146fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.761719, 22.309426 ], [ -162.399902, 19.124410 ], [ -163.718262, 14.626109 ], [ -168.178711, 13.453737 ], [ -171.364746, 16.594081 ], [ -170.266113, 20.961440 ], [ -165.761719, 22.309426 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8137bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -154.775391, 39.909736 ], [ -151.127930, 37.037640 ], [ -152.841797, 33.119150 ], [ -158.049316, 32.119801 ], [ -161.652832, 34.994004 ], [ -159.938965, 39.095963 ], [ -157.478027, 39.419221 ], [ -154.775391, 39.909736 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81477ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -161.652832, 34.994004 ], [ -158.049316, 32.119801 ], [ -159.565430, 27.916767 ], [ -164.465332, 26.667096 ], [ -166.750488, 28.613459 ], [ -167.893066, 29.630771 ], [ -166.530762, 33.961586 ], [ -161.652832, 34.994004 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81467ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.565430, 27.916767 ], [ -156.093750, 24.686952 ], [ -157.609863, 20.262197 ], [ -162.399902, 19.124410 ], [ -165.761719, 22.309426 ], [ -164.465332, 26.667096 ], [ -159.565430, 27.916767 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815dbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.609863, 20.262197 ], [ -154.248047, 16.804541 ], [ -155.764160, 12.275599 ], [ -160.444336, 11.221510 ], [ -163.718262, 14.626109 ], [ -162.399902, 19.124410 ], [ -157.609863, 20.262197 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8136bffffffffff", "tippecanoe:count": 3, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:mean:ABBREV_LEN": 8.333333333333334, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_MD": 3, "tippecanoe:mean:GDP_MD": 242587.66666666667, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:HOMEPART": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:LABELRANK": 3, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": -209.80598200000004, "tippecanoe:count:LABEL_X": 3, "tippecanoe:mean:LABEL_X": -69.93532733333335, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:sum:LABEL_Y": -121.16396399999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:mean:LABEL_Y": -40.387988, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:LEVEL": 3, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 43, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:mean:LONG_LEN": 14.333333333333334, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 11.4, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:mean:MIN_LABEL": 3.8000000000000004, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:mean:NAME_LEN": 14.333333333333334, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:sum:NE_ID": 4048275965, "tippecanoe:count:NE_ID": 3, "tippecanoe:mean:NE_ID": 1349425321.6666668, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_EST": 3, "tippecanoe:mean:POP_EST": 21296916.666666669, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_RANK": 3, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -297, "tippecanoe:count:TINY": 3, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849430, "tippecanoe:count:WOE_ID": 3, "tippecanoe:mean:WOE_ID": 15616476.666666666, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:sum:WOE_ID_EH": 46849430, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:mean:WOE_ID_EH": 15616476.666666666, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.841797, 33.119150 ], [ -149.348145, 29.897806 ], [ -151.040039, 25.661333 ], [ -156.093750, 24.686952 ], [ -159.565430, 27.916767 ], [ -158.049316, 32.119801 ], [ -152.841797, 33.119150 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815d7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.712402, 22.877440 ], [ -139.614258, 19.228177 ], [ -141.372070, 14.881087 ], [ -146.162109, 14.115267 ], [ -149.370117, 17.727759 ], [ -147.700195, 22.167058 ], [ -142.712402, 22.877440 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815d3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -151.040039, 25.661333 ], [ -147.700195, 22.167058 ], [ -149.370117, 17.727759 ], [ -154.248047, 16.804541 ], [ -157.609863, 20.262197 ], [ -156.093750, 24.686952 ], [ -151.040039, 25.661333 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815cbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.764160, 12.275599 ], [ -152.534180, 8.711359 ], [ -154.028320, 4.258768 ], [ -158.598633, 3.337954 ], [ -161.762695, 6.773716 ], [ -160.444336, 11.221510 ], [ -155.764160, 12.275599 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81463ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.893066, 29.630771 ], [ -166.750488, 28.613459 ], [ -164.465332, 26.667096 ], [ -165.761719, 22.309426 ], [ -170.266113, 20.961440 ], [ -171.342773, 21.943046 ], [ -173.671875, 23.785345 ], [ -172.639160, 28.207609 ], [ -167.893066, 29.630771 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8146bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -173.671875, 23.785345 ], [ -171.342773, 21.943046 ], [ -170.266113, 20.961440 ], [ -171.364746, 16.594081 ], [ -175.451660, 15.284185 ], [ -178.945312, 17.748687 ], [ -178.220215, 22.085640 ], [ -173.671875, 23.785345 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81473ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.266113, 37.142803 ], [ -166.530762, 33.961586 ], [ -167.893066, 29.630771 ], [ -172.639160, 28.207609 ], [ -176.550293, 31.147006 ], [ -175.561523, 35.746512 ], [ -170.266113, 37.142803 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81717ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.718262, 14.626109 ], [ -160.444336, 11.221510 ], [ -161.762695, 6.773716 ], [ -166.179199, 5.769036 ], [ -169.299316, 9.058702 ], [ -168.178711, 13.453737 ], [ -163.718262, 14.626109 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81713ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.364746, 16.594081 ], [ -168.178711, 13.453737 ], [ -169.299316, 9.058702 ], [ -173.386230, 7.972198 ], [ -176.352539, 11.049038 ], [ -175.451660, 15.284185 ], [ -171.364746, 16.594081 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81703ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.299316, 9.058702 ], [ -166.179199, 5.769036 ], [ -167.321777, 1.515936 ], [ -171.364746, 0.659165 ], [ -174.309082, 3.820408 ], [ -173.386230, 7.972198 ], [ -169.299316, 9.058702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81363ffffffffff", "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.744629, 37.683820 ], [ -142.316895, 34.452218 ], [ -144.162598, 30.562261 ], [ -149.348145, 29.897806 ], [ -152.841797, 33.119150 ], [ -151.127930, 37.037640 ], [ -145.744629, 37.683820 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8136fffffffffff", "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 141, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 282, "tippecanoe:sum:GDP_YEAR": 4028, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2014, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": -89.801781, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": -44.9008905, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_Y": -107.292315, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -53.6461575, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 56, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4.75, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:sum:NE_ID": 2318641442, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320721, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:sum:POP_EST": 3428, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 1714, "tippecanoe:min:POP_EST": 30, "tippecanoe:max:POP_EST": 3398, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 2.5, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:sum:POP_YEAR": 4033, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2016.5, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -96, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 3, "tippecanoe:sum:WOE_ID": 46849769, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424884.5, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID_EH": 46849769, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424884.5, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 2, "tippecanoe:min:scalerank": 1, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.162598, 30.562261 ], [ -140.910645, 27.059126 ], [ -142.712402, 22.877440 ], [ -147.700195, 22.167058 ], [ -151.040039, 25.661333 ], [ -149.348145, 29.897806 ], [ -144.162598, 30.562261 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815c7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -141.372070, 14.881087 ], [ -138.427734, 11.221510 ], [ -140.119629, 6.860985 ], [ -144.733887, 6.053161 ], [ -147.810059, 9.622414 ], [ -146.162109, 14.115267 ], [ -141.372070, 14.881087 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815c3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -149.370117, 17.727759 ], [ -146.162109, 14.115267 ], [ -147.810059, 9.622414 ], [ -152.534180, 8.711359 ], [ -155.764160, 12.275599 ], [ -154.248047, 16.804541 ], [ -149.370117, 17.727759 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "815cfffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.810059, 9.622414 ], [ -144.733887, 6.053161 ], [ -146.337891, 1.669686 ], [ -150.908203, 0.790990 ], [ -154.028320, 4.258768 ], [ -152.534180, 8.711359 ], [ -147.810059, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81127ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.961914, 59.512029 ], [ -102.128906, 59.467408 ], [ -98.569336, 55.216490 ], [ -102.897949, 51.563412 ], [ -109.995117, 51.754240 ], [ -114.235840, 55.478853 ], [ -110.961914, 59.512029 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81123ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.455078, 63.194018 ], [ -110.961914, 59.512029 ], [ -114.235840, 55.478853 ], [ -121.442871, 54.914514 ], [ -126.848145, 58.043004 ], [ -125.332031, 62.237233 ], [ -116.455078, 63.194018 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8112fffffffffff", "tippecanoe:count": 8, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 568260, "tippecanoe:count:GDP_MD": 8, "tippecanoe:mean:GDP_MD": 71032.5, "tippecanoe:min:GDP_MD": 596, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:HOMEPART": 8, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:LABELRANK": 8, "tippecanoe:mean:LABELRANK": 3.375, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 582.38741, "tippecanoe:count:LABEL_X": 8, "tippecanoe:mean:LABEL_X": 72.79842625, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_Y": 326.084598, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:mean:LABEL_Y": 40.76057475, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:LEVEL": 8, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:min:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 86, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.75, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": 41, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:mean:MAPCOLOR13": 5.125, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 62.5, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:mean:MAX_LABEL": 7.8125, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 27.4, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:mean:MIN_ZOOM": 0.625, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 9274568164, "tippecanoe:count:NE_ID": 8, "tippecanoe:mean:NE_ID": 1159321020.5, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:sum:POP_EST": 325740912, "tippecanoe:count:POP_EST": 8, "tippecanoe:mean:POP_EST": 40717614, "tippecanoe:min:POP_EST": 36175, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_RANK": 8, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 16142, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -688, "tippecanoe:count:TINY": 8, "tippecanoe:mean:TINY": -86, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 140549173, "tippecanoe:count:WOE_ID": 8, "tippecanoe:mean:WOE_ID": 17568646.625, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:sum:WOE_ID_EH": 184044401, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:mean:WOE_ID_EH": 23005550.125, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.235840, 55.478853 ], [ -109.995117, 51.754240 ], [ -112.785645, 48.004625 ], [ -119.223633, 47.798397 ], [ -120.915527, 49.396675 ], [ -123.112793, 50.986099 ], [ -121.442871, 54.914514 ], [ -114.235840, 55.478853 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8127bffffffffff", "tippecanoe:count": 8, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 22884216, "tippecanoe:count:GDP_MD": 8, "tippecanoe:mean:GDP_MD": 2860527, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:HOMEPART": 8, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 22, "tippecanoe:count:LABELRANK": 8, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 942.240656, "tippecanoe:count:LABEL_X": 8, "tippecanoe:mean:LABEL_X": 117.780082, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:sum:LABEL_Y": 232.15936599999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:mean:LABEL_Y": 29.019920749999998, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:LEVEL": 8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 71, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:mean:LONG_LEN": 8.875, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:sum:MAPCOLOR13": 39, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:mean:MAPCOLOR13": 4.875, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:mean:MAPCOLOR7": 3.375, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR8": 29, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR8": 3.625, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 30, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:sum:MAX_LABEL": 60.7, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:mean:MAX_LABEL": 7.5875, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 23.4, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 58, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:mean:NAME_LEN": 7.25, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:sum:NE_ID": 9274567810, "tippecanoe:count:NE_ID": 8, "tippecanoe:mean:NE_ID": 1159320976.25, "tippecanoe:min:NE_ID": 1159320471, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:sum:POP_EST": 1736062529, "tippecanoe:count:POP_EST": 8, "tippecanoe:mean:POP_EST": 217007816.125, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:sum:POP_RANK": 123, "tippecanoe:count:POP_RANK": 8, "tippecanoe:mean:POP_RANK": 15.375, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 18, "tippecanoe:sum:POP_YEAR": 16153, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:mean:POP_YEAR": 2019.125, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -691, "tippecanoe:count:TINY": 8, "tippecanoe:mean:TINY": -86.375, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 188839895, "tippecanoe:count:WOE_ID": 8, "tippecanoe:mean:WOE_ID": 23604986.875, "tippecanoe:min:WOE_ID": 23424781, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:sum:WOE_ID_EH": 188839895, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:mean:WOE_ID_EH": 23604986.875, "tippecanoe:min:WOE_ID_EH": 23424781, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.995117, 51.754240 ], [ -102.897949, 51.563412 ], [ -99.909668, 47.472663 ], [ -102.326660, 45.197522 ], [ -103.535156, 44.087585 ], [ -109.797363, 44.418088 ], [ -112.785645, 48.004625 ], [ -109.995117, 51.754240 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8112bffffffffff", "tippecanoe:count": 14, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:mean:ADM0_DIF": 0.21428571428571428, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 6322700, "tippecanoe:count:GDP_MD": 14, "tippecanoe:mean:GDP_MD": 451621.4285714286, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:HOMEPART": 14, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 61, "tippecanoe:count:LABELRANK": 14, "tippecanoe:mean:LABELRANK": 4.357142857142857, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 300.14189400000006, "tippecanoe:count:LABEL_X": 14, "tippecanoe:mean:LABEL_X": 21.43870671428572, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:sum:LABEL_Y": 761.8934709999999, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:mean:LABEL_Y": 54.4209622142857, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:LEVEL": 14, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 104, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:mean:LONG_LEN": 7.428571428571429, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 42, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 51, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:mean:MAPCOLOR8": 3.642857142857143, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR9": 46, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:sum:MAX_LABEL": 116.7, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:mean:MAX_LABEL": 8.335714285714286, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:sum:MIN_LABEL": 47.2, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:mean:MIN_LABEL": 3.3714285714285716, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 96, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:mean:NAME_LEN": 6.857142857142857, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 16230492268, "tippecanoe:count:NE_ID": 14, "tippecanoe:mean:NE_ID": 1159320876.2857145, "tippecanoe:min:NE_ID": 1159320427, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:sum:POP_EST": 195489159, "tippecanoe:count:POP_EST": 14, "tippecanoe:mean:POP_EST": 13963511.357142857, "tippecanoe:min:POP_EST": 29884, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_RANK": 14, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:min:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:TINY": 14, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 5, "tippecanoe:sum:WOE_ID": 317101037, "tippecanoe:count:WOE_ID": 14, "tippecanoe:mean:WOE_ID": 22650074.07142857, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:sum:WOE_ID_EH": 317101037, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:mean:WOE_ID_EH": 22650074.07142857, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 14, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.848145, 58.043004 ], [ -121.442871, 54.914514 ], [ -123.112793, 50.986099 ], [ -128.913574, 50.148746 ], [ -133.857422, 52.842595 ], [ -133.527832, 56.764768 ], [ -126.848145, 58.043004 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8128fffffffffff", "tippecanoe:count": 30, "tippecanoe:sum:ABBREV_LEN": 140, "tippecanoe:count:ABBREV_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:sum:ADM0_A3_UN": -2970, "tippecanoe:count:ADM0_A3_UN": 30, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -2970, "tippecanoe:count:ADM0_A3_WB": 30, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:ADM0_DIF": 30, "tippecanoe:mean:ADM0_DIF": 0.1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 3, "tippecanoe:count:BRK_DIFF": 30, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:sum:GDP_MD": 4652105, "tippecanoe:count:GDP_MD": 30, "tippecanoe:mean:GDP_MD": 155070.16666666667, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:sum:GDP_YEAR": 60537, "tippecanoe:count:GDP_YEAR": 30, "tippecanoe:mean:GDP_YEAR": 2017.9, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 30, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -270, "tippecanoe:count:HOMEPART": 30, "tippecanoe:mean:HOMEPART": -9, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:LABELRANK": 30, "tippecanoe:mean:LABELRANK": 4.233333333333333, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 9, "tippecanoe:sum:LABEL_X": 1192.538962, "tippecanoe:count:LABEL_X": 30, "tippecanoe:mean:LABEL_X": 39.751298733333339, "tippecanoe:min:LABEL_X": 21.555839, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_Y": 939.4510879999998, "tippecanoe:count:LABEL_Y": 30, "tippecanoe:mean:LABEL_Y": 31.31503626666666, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:sum:LEVEL": 60, "tippecanoe:count:LEVEL": 30, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 251, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:mean:LONG_LEN": 8.366666666666668, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:sum:MAPCOLOR13": 84, "tippecanoe:count:MAPCOLOR13": 30, "tippecanoe:mean:MAPCOLOR13": 2.8, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR7": 95, "tippecanoe:count:MAPCOLOR7": 30, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR8": 86, "tippecanoe:count:MAPCOLOR8": 30, "tippecanoe:mean:MAPCOLOR8": 2.8666666666666669, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 106, "tippecanoe:count:MAPCOLOR9": 30, "tippecanoe:mean:MAPCOLOR9": 3.533333333333333, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:sum:MAX_LABEL": 259.9, "tippecanoe:count:MAX_LABEL": 30, "tippecanoe:mean:MAX_LABEL": 8.663333333333333, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:sum:MIN_LABEL": 117, "tippecanoe:count:MIN_LABEL": 30, "tippecanoe:mean:MIN_LABEL": 3.9, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_ZOOM": 21, "tippecanoe:count:MIN_ZOOM": 30, "tippecanoe:mean:MIN_ZOOM": 0.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:sum:NAME_LEN": 245, "tippecanoe:count:NAME_LEN": 30, "tippecanoe:mean:NAME_LEN": 8.166666666666666, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:sum:NE_ID": 35349939856, "tippecanoe:count:NE_ID": 30, "tippecanoe:mean:NE_ID": 1178331328.5333334, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:sum:POP_EST": 653845935, "tippecanoe:count:POP_EST": 30, "tippecanoe:mean:POP_EST": 21794864.5, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:sum:POP_RANK": 377, "tippecanoe:count:POP_RANK": 30, "tippecanoe:mean:POP_RANK": 12.566666666666667, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:sum:POP_YEAR": 60563, "tippecanoe:count:POP_YEAR": 30, "tippecanoe:mean:POP_YEAR": 2018.7666666666667, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 30, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -2664, "tippecanoe:count:TINY": 30, "tippecanoe:mean:TINY": -88.8, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 4, "tippecanoe:sum:WOE_ID": 567060578, "tippecanoe:count:WOE_ID": 30, "tippecanoe:mean:WOE_ID": 18902019.266666667, "tippecanoe:min:WOE_ID": -99, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:sum:WOE_ID_EH": 637335789, "tippecanoe:count:WOE_ID_EH": 30, "tippecanoe:mean:WOE_ID_EH": 21244526.3, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:scalerank": 30, "tippecanoe:mean:scalerank": 0.36666666666666666, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.112793, 50.986099 ], [ -120.915527, 49.396675 ], [ -119.223633, 47.798397 ], [ -122.124023, 44.056012 ], [ -127.968750, 43.421009 ], [ -131.286621, 46.422713 ], [ -128.913574, 50.148746 ], [ -123.112793, 50.986099 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8150bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.333008, 28.652031 ], [ -118.630371, 24.666986 ], [ -121.003418, 20.571082 ], [ -125.793457, 20.406420 ], [ -128.474121, 24.186847 ], [ -126.430664, 28.323725 ], [ -121.333008, 28.652031 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81483ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.654297, 28.729130 ], [ -105.249023, 28.439714 ], [ -103.007812, 24.126702 ], [ -105.952148, 20.220966 ], [ -111.005859, 20.488773 ], [ -113.466797, 24.666986 ], [ -110.654297, 28.729130 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81503ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.474121, 24.186847 ], [ -125.793457, 20.406420 ], [ -127.749023, 16.425548 ], [ -129.221191, 16.362310 ], [ -132.143555, 16.066929 ], [ -134.890137, 19.746024 ], [ -133.088379, 23.825551 ], [ -131.550293, 23.905927 ], [ -128.474121, 24.186847 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "816ebffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.335449, 12.404389 ], [ -106.567383, 12.146746 ], [ -104.545898, 8.124491 ], [ -107.094727, 4.543570 ], [ -111.599121, 4.784469 ], [ -113.774414, 8.624472 ], [ -111.335449, 12.404389 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81487ffffffffff", "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:min:GDP_MD": 0, "tippecanoe:max:GDP_MD": 16, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:max:HOMEPART": -99, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 70, "tippecanoe:min:POP_EST": 0, "tippecanoe:max:POP_EST": 140, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -97, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -48.5, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 4, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.269043, 32.861132 ], [ -110.654297, 28.729130 ], [ -113.466797, 24.666986 ], [ -118.630371, 24.666986 ], [ -121.333008, 28.652031 ], [ -118.806152, 32.787275 ], [ -113.269043, 32.861132 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8148fffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.258789, 36.791691 ], [ -104.458008, 36.491973 ], [ -102.084961, 32.268555 ], [ -105.249023, 28.439714 ], [ -110.654297, 28.729130 ], [ -113.269043, 32.861132 ], [ -110.258789, 36.791691 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8129bffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:max:LABELRANK": 5, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 12, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": 2, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:max:scalerank": 3 }, "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": "8149bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.007812, 24.126702 ], [ -97.910156, 23.584126 ], [ -96.042480, 19.269665 ], [ -99.008789, 15.559544 ], [ -103.820801, 15.961329 ], [ -105.952148, 20.220966 ], [ -103.007812, 24.126702 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81293ffffffffff", "tippecanoe:count": 2, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 355902, "tippecanoe:count:GDP_MD": 2, "tippecanoe:mean:GDP_MD": 177951, "tippecanoe:min:GDP_MD": 4471, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:HOMEPART": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:LABELRANK": 2, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:sum:LABEL_X": 55.132998, "tippecanoe:count:LABEL_X": 2, "tippecanoe:mean:LABEL_X": 27.566499, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:sum:LABEL_Y": -56.242452, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:mean:LABEL_Y": -28.121226, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:LEVEL": 2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:mean:LONG_LEN": 15.5, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:count:NE_ID": 2, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:min:NE_ID": 1159321289, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:sum:POP_EST": 59706400, "tippecanoe:count:POP_EST": 2, "tippecanoe:mean:POP_EST": 29853200, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_RANK": 2, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:max:POP_RANK": 16, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -198, "tippecanoe:count:TINY": 2, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 46849935, "tippecanoe:count:WOE_ID": 2, "tippecanoe:mean:WOE_ID": 23424967.5, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:sum:WOE_ID_EH": 46849935, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:mean:WOE_ID_EH": 23424967.5, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "816efffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.476562, 16.573023 ], [ -113.620605, 16.488765 ], [ -111.335449, 12.404389 ], [ -113.774414, 8.624472 ], [ -118.344727, 8.776511 ], [ -120.717773, 12.661778 ], [ -118.476562, 16.573023 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81497ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.466797, 24.666986 ], [ -111.005859, 20.488773 ], [ -113.620605, 16.488765 ], [ -118.476562, 16.573023 ], [ -121.003418, 20.571082 ], [ -118.630371, 24.666986 ], [ -113.466797, 24.666986 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "816e3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.344727, 8.776511 ], [ -113.774414, 8.624472 ], [ -111.599121, 4.784469 ], [ -113.906250, 1.340210 ], [ -118.234863, 1.537901 ], [ -120.476074, 5.156599 ], [ -118.344727, 8.776511 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81493ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.005859, 20.488773 ], [ -105.952148, 20.220966 ], [ -103.820801, 15.961329 ], [ -106.567383, 12.146746 ], [ -111.335449, 12.404389 ], [ -113.620605, 16.488765 ], [ -111.005859, 20.488773 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "816e7ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.717773, 12.661778 ], [ -118.344727, 8.776511 ], [ -120.476074, 5.156599 ], [ -124.738770, 5.309766 ], [ -127.111816, 8.928487 ], [ -125.244141, 12.661778 ], [ -120.717773, 12.661778 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81513ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.749023, 16.425548 ], [ -125.244141, 12.661778 ], [ -127.111816, 8.928487 ], [ -131.264648, 8.320212 ], [ -133.901367, 11.888853 ], [ -132.143555, 16.066929 ], [ -129.221191, 16.362310 ], [ -127.749023, 16.425548 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8151bffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.003418, 20.571082 ], [ -118.476562, 16.573023 ], [ -120.717773, 12.661778 ], [ -125.244141, 12.661778 ], [ -127.749023, 16.425548 ], [ -125.793457, 20.406420 ], [ -121.003418, 20.571082 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "81797ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.111816, 8.928487 ], [ -124.738770, 5.309766 ], [ -125.661621, 3.601142 ], [ -126.474609, 1.625758 ], [ -130.451660, 0.834931 ], [ -132.956543, 4.149201 ], [ -131.264648, 8.320212 ], [ -127.111816, 8.928487 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "8126fffffffffff", "tippecanoe:count": 1, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:max:POP_RANK": 13, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": 1, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_MD": 1, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:HOMEPART": 1, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:LABELRANK": 1, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_X": 1, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:LEVEL": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:count:NE_ID": 1, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_EST": 1, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_RANK": 1, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:max:POP_RANK": 15, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:max:SU_DIF": 0, "tippecanoe:sum:TINY": -99, "tippecanoe:count:TINY": 1, "tippecanoe:mean:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:max:TINY": -99, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID": 1, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:max:WOE_ID": -90, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:mean:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:max:scalerank": 0 }, "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": "816dbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.820801, 15.961329 ], [ -99.008789, 15.559544 ], [ -97.207031, 11.415418 ], [ -99.975586, 7.819847 ], [ -104.545898, 8.124491 ], [ -106.567383, 12.146746 ], [ -103.820801, 15.961329 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "816c3ffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.207031, 11.415418 ], [ -92.746582, 10.962764 ], [ -92.241211, 9.644077 ], [ -91.120605, 7.057282 ], [ -93.911133, 3.491489 ], [ -98.305664, 3.930020 ], [ -98.811035, 5.244128 ], [ -99.975586, 7.819847 ], [ -97.207031, 11.415418 ] ] ] } } -, -{ "type": "Feature", "properties": { "bin": "816cbffffffffff", "tippecanoe:count": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.545898, 8.124491 ], [ -99.975586, 7.819847 ], [ -98.811035, 5.244128 ], [ -98.305664, 3.930020 ], [ -101.052246, 0.395505 ], [ -105.183105, 0.878872 ], [ -107.094727, 4.543570 ], [ -104.545898, 8.124491 ] ] ] } } +{ "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 ] ] ] ] } } ] } ] } diff --git a/tests/pbf/bin-11-327-791.pbf.out.json b/tests/pbf/bin-11-327-791.pbf.out.json index ed9b1c2ef..660ac77bf 100644 --- a/tests/pbf/bin-11-327-791.pbf.out.json +++ b/tests/pbf/bin-11-327-791.pbf.out.json @@ -1,12 +1,18 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831", "tippecanoe:count": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462540, 37.711257 ], [ -122.460823, 37.710578 ], [ -122.464256, 37.710578 ], [ -122.465973, 37.710171 ], [ -122.467690, 37.709220 ], [ -122.468891, 37.708270 ], [ -122.497730, 37.708134 ], [ -122.498245, 37.708134 ], [ -122.498245, 37.710714 ], [ -122.498417, 37.714924 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655", "tippecanoe:count": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361", "tippecanoe:count": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427349, 37.715060 ], [ -122.425632, 37.714517 ], [ -122.426662, 37.711257 ], [ -122.427177, 37.711257 ], [ -122.426147, 37.710986 ], [ -122.426662, 37.710171 ], [ -122.429924, 37.711529 ], [ -122.430096, 37.710850 ], [ -122.429237, 37.709628 ], [ -122.428379, 37.709220 ], [ -122.428379, 37.708405 ], [ -122.434044, 37.708134 ], [ -122.440395, 37.708405 ], [ -122.452240, 37.708134 ], [ -122.468891, 37.708270 ], [ -122.467690, 37.709220 ], [ -122.465973, 37.710171 ], [ -122.464256, 37.710578 ], [ -122.460823, 37.710578 ], [ -122.462540, 37.711257 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269", "tippecanoe:count": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554", "tippecanoe:count": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.397995, 37.715467 ], [ -122.398510, 37.715467 ], [ -122.396450, 37.712887 ], [ -122.395763, 37.710850 ], [ -122.394047, 37.711257 ], [ -122.390785, 37.711122 ], [ -122.390957, 37.710307 ], [ -122.393703, 37.708270 ], [ -122.423744, 37.708270 ], [ -122.428379, 37.708405 ], [ -122.428379, 37.709220 ], [ -122.429237, 37.709628 ], [ -122.430096, 37.710850 ], [ -122.429924, 37.711529 ], [ -122.426662, 37.710171 ], [ -122.426147, 37.710986 ], [ -122.427177, 37.711257 ], [ -122.426662, 37.711257 ], [ -122.425632, 37.714517 ], [ -122.427349, 37.715060 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070", "tippecanoe:count": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787", "tippecanoe:count": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.360401, 37.708270 ], [ -122.381001, 37.708405 ], [ -122.393703, 37.708270 ], [ -122.390957, 37.710307 ], [ -122.390785, 37.711122 ], [ -122.394047, 37.711257 ], [ -122.395763, 37.710850 ], [ -122.396450, 37.712887 ], [ -122.398510, 37.715467 ], [ -122.397995, 37.715467 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520", "tippecanoe:count": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087", "tippecanoe:count": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372", "tippecanoe:count": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634", "tippecanoe:count": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } , { "type": "Feature", "properties": { "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664", "tippecanoe:count": 70 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } , @@ -30,28 +36,22 @@ , { "type": "Feature", "properties": { "ZCTA5CE10": "94114", "GEOID10": "94114", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3692567, "AWATER10": 0, "INTPTLAT10": "+37.7580586", "INTPTLON10": "-122.4354080", "tippecanoe:count": 206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.428379, 37.770443 ], [ -122.428207, 37.769493 ], [ -122.426319, 37.769629 ], [ -122.427006, 37.769222 ], [ -122.426662, 37.768951 ], [ -122.426491, 37.765830 ], [ -122.427692, 37.765694 ], [ -122.427521, 37.764608 ], [ -122.426319, 37.764608 ], [ -122.426319, 37.763930 ], [ -122.427177, 37.763794 ], [ -122.427177, 37.762980 ], [ -122.426319, 37.762980 ], [ -122.426147, 37.762166 ], [ -122.424774, 37.748593 ], [ -122.438164, 37.747779 ], [ -122.438164, 37.748729 ], [ -122.441425, 37.748593 ], [ -122.442455, 37.748186 ], [ -122.444000, 37.746829 ], [ -122.444515, 37.746693 ], [ -122.444859, 37.746965 ], [ -122.444172, 37.747508 ], [ -122.444344, 37.748322 ], [ -122.443485, 37.749408 ], [ -122.442799, 37.752394 ], [ -122.442455, 37.752394 ], [ -122.440395, 37.755108 ], [ -122.440052, 37.755787 ], [ -122.440052, 37.756330 ], [ -122.441082, 37.756194 ], [ -122.441082, 37.756058 ], [ -122.441254, 37.756194 ], [ -122.442970, 37.755516 ], [ -122.442284, 37.755108 ], [ -122.442455, 37.754430 ], [ -122.442970, 37.754023 ], [ -122.444000, 37.754158 ], [ -122.444172, 37.755923 ], [ -122.444687, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.446918, 37.756601 ], [ -122.447948, 37.757551 ], [ -122.450352, 37.757416 ], [ -122.451038, 37.756737 ], [ -122.452068, 37.756601 ], [ -122.452412, 37.757008 ], [ -122.453270, 37.756737 ], [ -122.453785, 37.757416 ], [ -122.452927, 37.758094 ], [ -122.453957, 37.758773 ], [ -122.453270, 37.759180 ], [ -122.451553, 37.759451 ], [ -122.448635, 37.759587 ], [ -122.448463, 37.759044 ], [ -122.447605, 37.759180 ], [ -122.447090, 37.759723 ], [ -122.446404, 37.760944 ], [ -122.446747, 37.761758 ], [ -122.445374, 37.761894 ], [ -122.443829, 37.763251 ], [ -122.442970, 37.763523 ], [ -122.443314, 37.765287 ], [ -122.441254, 37.765287 ], [ -122.439537, 37.766644 ], [ -122.438507, 37.766237 ], [ -122.438164, 37.767187 ], [ -122.435589, 37.767322 ], [ -122.435760, 37.769086 ], [ -122.429066, 37.769493 ], [ -122.429237, 37.770308 ], [ -122.428379, 37.770443 ] ] ], [ [ [ -122.441597, 37.755108 ], [ -122.442799, 37.752530 ], [ -122.442455, 37.753751 ], [ -122.441597, 37.755108 ] ] ] ] } } , +{ "type": "Feature", "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015", "tippecanoe:count": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } +, { "type": "Feature", "properties": { "ZCTA5CE10": "94102", "GEOID10": "94102", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1732577, "AWATER10": 0, "INTPTLAT10": "+37.7795835", "INTPTLON10": "-122.4193398", "tippecanoe:count": 134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.408638, 37.789167 ], [ -122.408466, 37.788353 ], [ -122.406750, 37.788488 ], [ -122.406406, 37.786589 ], [ -122.404690, 37.786725 ], [ -122.408638, 37.783604 ], [ -122.408638, 37.783469 ], [ -122.409153, 37.783197 ], [ -122.426319, 37.769629 ], [ -122.428207, 37.769493 ], [ -122.429924, 37.777906 ], [ -122.428036, 37.778177 ], [ -122.428207, 37.779127 ], [ -122.426834, 37.779263 ], [ -122.427349, 37.782112 ], [ -122.424088, 37.782519 ], [ -122.423916, 37.781569 ], [ -122.422371, 37.781705 ], [ -122.422543, 37.782655 ], [ -122.420826, 37.782926 ], [ -122.420654, 37.781976 ], [ -122.418938, 37.782112 ], [ -122.419109, 37.783062 ], [ -122.414303, 37.783740 ], [ -122.414818, 37.786453 ], [ -122.413101, 37.786725 ], [ -122.413273, 37.787674 ], [ -122.412415, 37.787810 ], [ -122.412415, 37.788081 ], [ -122.411728, 37.788217 ], [ -122.411900, 37.788760 ], [ -122.408638, 37.789167 ] ] ] } } , { "type": "Feature", "properties": { "ZCTA5CE10": "94105", "GEOID10": "94105", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 942025, "AWATER10": 223684, "INTPTLAT10": "+37.7896493", "INTPTLON10": "-122.3930670", "tippecanoe:count": 127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.388897, 37.796628 ], [ -122.385120, 37.791337 ], [ -122.385635, 37.790930 ], [ -122.385464, 37.790523 ], [ -122.386322, 37.790252 ], [ -122.387867, 37.788760 ], [ -122.387695, 37.787132 ], [ -122.388554, 37.786996 ], [ -122.392159, 37.784147 ], [ -122.392330, 37.784283 ], [ -122.391472, 37.785097 ], [ -122.391472, 37.785639 ], [ -122.390099, 37.786725 ], [ -122.391815, 37.785504 ], [ -122.393360, 37.784961 ], [ -122.394218, 37.785097 ], [ -122.394047, 37.785232 ], [ -122.395592, 37.786318 ], [ -122.397823, 37.784690 ], [ -122.399368, 37.785911 ], [ -122.400398, 37.785097 ], [ -122.402630, 37.786725 ], [ -122.401772, 37.787267 ], [ -122.402802, 37.788081 ], [ -122.403488, 37.787810 ], [ -122.396278, 37.793372 ], [ -122.396622, 37.794593 ], [ -122.394390, 37.795000 ], [ -122.392502, 37.793643 ], [ -122.392159, 37.793915 ], [ -122.391472, 37.793915 ], [ -122.388897, 37.796628 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237", "tippecanoe:count": 236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ] ] ], [ [ [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ] ] ], [ [ [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ] ] ], [ [ [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ] ] ], [ [ [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ] ] ], [ [ [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655", "tippecanoe:count": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269", "tippecanoe:count": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070", "tippecanoe:count": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } -, -{ "type": "Feature", "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372", "tippecanoe:count": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114", "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ] ], [ [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ] ], [ [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ] ], [ [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ] ], [ [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ] ], [ [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520", "tippecanoe:count": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237", "tippecanoe:count": 236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ] ] ], [ [ [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ] ] ], [ [ [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ] ] ], [ [ [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ] ] ], [ [ [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ] ] ], [ [ [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ] ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087", "tippecanoe:count": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831", "tippecanoe:count": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462540, 37.711257 ], [ -122.460823, 37.710578 ], [ -122.464256, 37.710578 ], [ -122.465973, 37.710171 ], [ -122.467690, 37.709220 ], [ -122.468891, 37.708270 ], [ -122.497730, 37.708134 ], [ -122.498245, 37.708134 ], [ -122.498245, 37.710714 ], [ -122.498417, 37.714924 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634", "tippecanoe:count": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361", "tippecanoe:count": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427349, 37.715060 ], [ -122.425632, 37.714517 ], [ -122.426662, 37.711257 ], [ -122.427177, 37.711257 ], [ -122.426147, 37.710986 ], [ -122.426662, 37.710171 ], [ -122.429924, 37.711529 ], [ -122.430096, 37.710850 ], [ -122.429237, 37.709628 ], [ -122.428379, 37.709220 ], [ -122.428379, 37.708405 ], [ -122.434044, 37.708134 ], [ -122.440395, 37.708405 ], [ -122.452240, 37.708134 ], [ -122.468891, 37.708270 ], [ -122.467690, 37.709220 ], [ -122.465973, 37.710171 ], [ -122.464256, 37.710578 ], [ -122.460823, 37.710578 ], [ -122.462540, 37.711257 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015", "tippecanoe:count": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554", "tippecanoe:count": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.397995, 37.715467 ], [ -122.398510, 37.715467 ], [ -122.396450, 37.712887 ], [ -122.395763, 37.710850 ], [ -122.394047, 37.711257 ], [ -122.390785, 37.711122 ], [ -122.390957, 37.710307 ], [ -122.393703, 37.708270 ], [ -122.423744, 37.708270 ], [ -122.428379, 37.708405 ], [ -122.428379, 37.709220 ], [ -122.429237, 37.709628 ], [ -122.430096, 37.710850 ], [ -122.429924, 37.711529 ], [ -122.426662, 37.710171 ], [ -122.426147, 37.710986 ], [ -122.427177, 37.711257 ], [ -122.426662, 37.711257 ], [ -122.425632, 37.714517 ], [ -122.427349, 37.715060 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } , -{ "type": "Feature", "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114", "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ] ], [ [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ] ], [ [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ] ], [ [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ] ], [ [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ] ], [ [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ] ] ] } } +{ "type": "Feature", "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787", "tippecanoe:count": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.360401, 37.708270 ], [ -122.381001, 37.708405 ], [ -122.393703, 37.708270 ], [ -122.390957, 37.710307 ], [ -122.390785, 37.711122 ], [ -122.394047, 37.711257 ], [ -122.395763, 37.710850 ], [ -122.396450, 37.712887 ], [ -122.398510, 37.715467 ], [ -122.397995, 37.715467 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } ] } ] } diff --git a/tests/pbf/h3-0-0-0.geojson b/tests/pbf/h3-0-0-0.geojson index 2ba4bf146..07825f291 100644 --- a/tests/pbf/h3-0-0-0.geojson +++ b/tests/pbf/h3-0-0-0.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "id": 12345, "properties": {"bin": "80a9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-47.69162254195798, -34.331158600979144], [-37.56677824334244, -27.94960597650389], [-39.83027546474522, -16.779214626193745], [-51.77642616787428, -12.387611570633618], [-61.19699841353227, -19.252194904738662], [-59.496606140042005, -29.892985338693553], [-47.69162254195798, -34.331158600979144]]]}}, {"type": "Feature", "id": 6789, "properties": {"bin": "80dbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-174.47635345070967, -55.70676846515227], [-177.97343103461537, -45.18424868970644], [167.61587312700956, -40.869133191665526], [152.50707693963324, -46.76027724369226], [150.11766435550595, -58.03211375817634], [169.5550224552217, -63.09505407752544], [-174.47635345070967, -55.70676846515227]]]}}, {"type": "Feature", "properties": {"bin": "8031fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[116.21289563713785, 47.30945130281313], [110.69461054882274, 37.16389648579593], [120.50339385995798, 29.89298533869355], [132.30837745804203, 34.33115860097915], [131.77440098149353, 45.253613490980094], [116.21289563713785, 47.30945130281313]]]}}, {"type": "Feature", "properties": {"bin": "8001fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[31.831280499087402, 68.92995788193983], [62.345344956509784, 69.3935964899183], [94.14309010184775, 76.163042830191], [145.5581976913369, 87.36469532319619], [-34.75841798028471, 81.27137179020501], [0.32561035194326043, 73.31022368544396], [31.831280499087402, 68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "800ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-66.90449925088507, 72.20470505499345], [-100.82187020582201, 67.53592431503803], [-98.56184761891002, 55.218550700351585], [-81.91962699890831, 48.295316381881364], [-63.20077399553516, 50.77050266836529], [-51.550082921060856, 61.33081918088026], [-66.90449925088507, 72.20470505499345]]]}}, {"type": "Feature", "properties": {"bin": "800bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[68.25632325438265, 58.31910366055611], [87.77296412239532, 52.6542030078627], [106.40349563788, 56.21061073758504], [117.81292538828089, 66.20328559643201], [94.14309010184775, 76.163042830191], [62.345344956509784, 69.3935964899183], [68.25632325438265, 58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "803ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[13.244313475659819, 37.523712365785194], [9.380676605201614, 25.603702576968765], [18.3651793828161, 16.505947603561054], [31.19369141851222, 18.24201252667272], [37.16428242437894, 29.339076105087567], [28.846868847179117, 39.64331054771269], [13.244313475659819, 37.523712365785194]]]}}, {"type": "Feature", "properties": {"bin": "80e1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[79.178129794178, -67.53592431503803], [81.43815238108998, -55.21855070035159], [67.21199607170564, -48.011188120377795], [51.09014618986225, -50.15451159756744], [40.31640651839021, -59.16948256665967], [48.29116091207033, -69.37134141076521], [79.178129794178, -67.53592431503803]]]}}, {"type": "Feature", "properties": {"bin": "80adfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.352921948642933, -34.99400669710761], [23.910011411582452, -24.69671125803906], [16.28544034001047, -14.623074892227514], [4.54172888597462, -15.28573031248396], [-2.1530562884085485, -24.756909421354475], [4.435670774951517, -35.741206971176496], [18.352921948642933, -34.99400669710761]]]}}, {"type": "Feature", "properties": {"bin": "8025fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[87.77296412239532, 52.6542030078627], [86.70820981047306, 40.31276675619656], [98.22850425577052, 33.621069780683506], [110.69461054882271, 37.16389648579594], [116.21289563713785, 47.30945130281313], [106.40349563787996, 56.21061073758502], [87.77296412239532, 52.6542030078627]]]}}, {"type": "Feature", "properties": {"bin": "80e9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-117.65465504349024, -69.3935964899183], [-85.85690989815225, -76.163042830191], [-62.187074611719154, -66.20328559643201], [-73.59650436212002, -56.21061073758504], [-92.22703587760468, -52.6542030078627], [-111.74367674561738, -58.31910366055611], [-117.65465504349024, -69.3935964899183]]]}}, {"type": "Feature", "properties": {"bin": "80b1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-120.8496732763327, -37.656443450315685], [-106.40738231200352, -33.70575303795421], [-104.98911415375096, -22.41056616821522], [-114.27330023533938, -16.170389213771347], [-125.313030646262, -19.148858649008005], [-129.81209638720395, -29.089392138145286], [-120.8496732763327, -37.656443450315685]]]}}, {"type": "Feature", "properties": {"bin": "8095fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[115.67172827000329, -3.8245323459249], [114.23117809212035, -14.482400617733104], [122.76988803599195, -21.81463899460828], [133.81752542331913, -18.9147568579124], [135.85958708181397, -7.725284543519058], [126.31795557186994, 0.17017772412858456], [115.67172827000329, -3.8245323459249]]]}}, {"type": "Feature", "properties": {"bin": "80cdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[98.08037300109167, -48.295316381881364], [95.41483296791186, -37.099588896819945], [83.33710961959481, -31.619530626908528], [69.74251514346645, -36.800197061174266], [67.21199607170564, -48.011188120377795], [81.43815238108998, -55.21855070035159], [98.08037300109167, -48.295316381881364]]]}}, {"type": "Feature", "properties": {"bin": "80e5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.44991707893914, -61.33081918088026], [116.79922600446484, -50.77050266836529], [98.08037300109167, -48.295316381881364], [81.43815238108998, -55.21855070035159], [79.178129794178, -67.53592431503803], [113.09550074911493, -72.20470505499345], [128.44991707893914, -61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "8089fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.8063085814878, -18.242012526672728], [-142.1510646286996, -8.893462571252659], [-146.33638072286848, 1.6772949381945048], [-158.59967491814012, 3.3357348575173495], [-165.41674992858833, -5.7628604914369355], [-161.63482061718392, -16.505947603561054], [-148.8063085814878, -18.242012526672728]]]}}, {"type": "Feature", "properties": {"bin": "8091fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-125.313030646262, -19.148858649008005], [-114.27330023533938, -16.170389213771344], [-114.02904784459382, -5.242929409571671], [-124.29849277976768, -1.4476428602001972], [-131.29818275576594, -9.876090877671759], [-125.313030646262, -19.148858649008005]]]}}, {"type": "Feature", "properties": {"bin": "80ebfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-174.47635345070967, -55.70676846515227], [169.55502245522166, -63.09505407752546], [-179.6743896480568, -73.31022368544396], [-148.16871950091263, -68.92995788193983], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "8047fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.56432922504848, 35.741206971176496], [177.84694371159145, 24.756909421354468], [-175.45827111402537, 15.285730312483953], [-163.71455965998953, 14.623074892227512], [-156.08998858841755, 24.696711258039056], [-161.64707805135708, 34.9940066971076], [-175.56432922504848, 35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "8039fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.38412687299043, 40.869133191665526], [-12.948554583750909, 28.514935780874872], [-2.4838650119479393, 22.197541386302376], [9.380676605201614, 25.603702576968765], [13.244313475659819, 37.523712365785194], [2.0265689653846333, 45.184248689706415], [-12.38412687299043, 40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80dffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.187074611719154, -66.20328559643201], [-34.663862454939185, -62.49215566258707], [-34.67148393106426, -51.12825449972591], [-48.22559901850649, -45.2536134909801], [-63.78710436286213, -47.30945130281312], [-73.59650436212002, -56.21061073758504], [-62.187074611719154, -66.20328559643201]]]}}, {"type": "Feature", "properties": {"bin": "80abfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[61.51813428281897, -16.572699557873406], [58.663371667348294, -28.65301931148454], [69.74251514346645, -36.800197061174266], [83.33710961959481, -31.619530626908528], [83.94979010377854, -19.26900694125663], [73.4403147682599, -12.150574686647925], [61.51813428281897, -16.572699557873406]]]}}, {"type": "Feature", "properties": {"bin": "8063fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[54.68696935373798, 19.14885864900799], [48.70181724423405, 9.876090877671759], [55.70150722023229, 1.4476428602001845], [65.97095215540618, 5.242929409571671], [65.72669976466062, 16.170389213771358], [54.68696935373798, 19.14885864900799]]]}}, {"type": "Feature", "properties": {"bin": "80b3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-72.25737566801898, -15.06330111473561], [-82.85149787376915, -22.29703635237555], [-81.77149574422948, -33.621069780683506], [-69.30538945117729, -37.16389648579593], [-59.496606140042026, -29.89298533869355], [-61.196998413532306, -19.252194904738655], [-72.25737566801898, -15.06330111473561]]]}}, {"type": "Feature", "properties": {"bin": "8037fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-153.03739182353243, 43.44325276436555], [-161.64707805135708, 34.9940066971076], [-156.08998858841755, 24.696711258039056], [-142.7188705783351, 22.885971422359724], [-134.1064889717779, 31.285608665560563], [-138.45029122366302, 41.45713981733576], [-153.03739182353243, 43.44325276436555]]]}}, {"type": "Feature", "properties": {"bin": "80a3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.57956251385473, -11.222876232379509], [37.281129421664886, -22.885971422359724], [45.89351102822212, -31.28560866556057], [58.663371667348294, -28.65301931148454], [61.51813428281897, -16.572699557873406], [52.88593419792579, -8.931891500446875], [41.57956251385473, -11.222876232379509]]]}}, {"type": "Feature", "properties": {"bin": "8011fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[25.082722326707884, 58.40154487035269], [36.11672363177465, 49.77934286766213], [53.67049363562549, 49.37211750883398], [68.25632325438265, 58.31910366055611], [62.34534495650971, 69.39359648991828], [31.831280499087388, 68.92995788193983], [25.082722326707884, 58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "808dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[114.23117809212033, -14.482400617733115], [115.67172827000326, -3.8245323459249176], [106.41168295379833, 2.7703025791670135], [95.22669343176798, -2.504604687315686], [94.36893143573202, -13.83685380982093], [104.00145175623875, -19.358823435394196], [114.23117809212033, -14.482400617733115]]]}}, {"type": "Feature", "properties": {"bin": "8051fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-127.11406580207421, 8.93189150044687], [-118.48186571718101, 16.572699557873406], [-121.3366283326517, 28.653019311484535], [-134.10648897177788, 31.285608665560563], [-142.7188705783351, 22.885971422359724], [-138.42043748614526, 11.22287623237951], [-127.11406580207421, 8.93189150044687]]]}}, {"type": "Feature", "properties": {"bin": "801dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6835934816099, 59.16948256665965], [-157.28277091871553, 54.01377148101902], [-153.03739182353243, 43.44325276436555], [-138.45029122366302, 41.45713981733576], [-128.90985381013775, 50.15451159756744], [-139.6835934816099, 59.16948256665965]]]}}, {"type": "Feature", "properties": {"bin": "80d1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[4.435670774951517, -35.741206971176496], [-4.379003183217645, -46.180014657090155], [4.251781231586493, -56.19652224584303], [22.717229081284426, -54.01377148101902], [26.962608176467533, -43.44325276436556], [18.3529219486429, -34.99400669710762], [4.435670774951517, -35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "80c7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-143.88327636822538, -49.779342867662145], [-126.32950636437451, -49.37211750883398], [-120.8496732763327, -37.656443450315685], [-129.81209638720395, -29.089392138145286], [-142.83571757562106, -29.339076105087567], [-151.1531311528209, -39.643310547712694], [-143.88327636822538, -49.779342867662145]]]}}, {"type": "Feature", "properties": {"bin": "8023fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-161.64707805135708, 34.994006697107615], [-153.03739182353246, 43.44325276436556], [-157.28277091871553, 54.01377148101902], [-175.74821876841347, 56.19652224584303], [175.6209968167824, 46.180014657090155], [-175.56432922504848, 35.741206971176496], [-161.64707805135708, 34.994006697107615]]]}}, {"type": "Feature", "properties": {"bin": "8041fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[118.80300158646772, 19.252194904738648], [120.50339385995798, 29.892985338693542], [110.69461054882274, 37.16389648579593], [98.22850425577053, 33.6210697806835], [97.14850212623087, 22.297036352375546], [107.74262433198103, 15.063301114735607], [118.80300158646772, 19.252194904738648]]]}}, {"type": "Feature", "properties": {"bin": "80a7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[117.97747445215552, -31.87788595636582], [122.76988803599195, -21.81463899460828], [114.23117809212033, -14.482400617733115], [104.00145175623875, -19.358823435394196], [105.35953183291994, -30.219492199828117], [117.97747445215552, -31.87788595636582]]]}}, {"type": "Feature", "properties": {"bin": "80affffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[83.94979010377854, -19.26900694125663], [83.33710961959481, -31.619530626908528], [95.41483296791186, -37.09958889681994], [105.35953183291994, -30.219492199828117], [104.00145175623874, -19.358823435394214], [94.36893143573201, -13.836853809820951], [83.94979010377854, -19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "806bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.3651793828161, 16.505947603561054], [14.583250071411682, 5.7628604914369355], [21.40032508185986, -3.3357348575173527], [33.66361927713152, -1.6772949381945048], [37.848935371300406, 8.893462571252657], [31.19369141851222, 18.24201252667272], [18.3651793828161, 16.505947603561054]]]}}, {"type": "Feature", "properties": {"bin": "805dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-156.08998858841755, 24.696711258039056], [-163.71455965998953, 14.623074892227512], [-158.59967491814012, 3.3357348575173495], [-146.33638072286848, 1.6772949381945048], [-138.42043748614526, 11.22287623237951], [-142.7188705783351, 22.885971422359724], [-156.08998858841755, 24.696711258039056]]]}}, {"type": "Feature", "properties": {"bin": "805ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-53.68204442813005, -0.17017772412858934], [-44.14041291818604, 7.725284543519059], [-46.18247457668085, 18.9147568579124], [-57.23011196400804, 21.81463899460828], [-65.76882190787964, 14.482400617733116], [-64.32827172999673, 3.8245323459248906], [-53.68204442813005, -0.17017772412858934]]]}}, {"type": "Feature", "properties": {"bin": "8045fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-85.63106856426799, 13.836853809820953], [-75.99854824376126, 19.35882343539422], [-74.64046816708006, 30.219492199828103], [-84.58516703208814, 37.099588896819924], [-96.66289038040519, 31.619530626908528], [-96.05020989622146, 19.26900694125663], [-85.63106856426799, 13.836853809820953]]]}}, {"type": "Feature", "properties": {"bin": "8097fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.281129421664886, -22.885971422359724], [41.57956251385473, -11.222876232379509], [33.66361927713152, -1.6772949381945048], [21.40032508185986, -3.3357348575173527], [16.28544034001047, -14.623074892227514], [23.910011411582452, -24.69671125803906], [37.281129421664886, -22.885971422359724]]]}}, {"type": "Feature", "properties": {"bin": "80e7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[48.291160912070175, -69.37134141076518], [40.31640651839009, -59.16948256665965], [22.717229081284408, -54.01377148101902], [4.251781231586488, -56.19652224584305], [-7.13862860130792, -66.19292316051032], [16.5431319209905, -76.14556732608257], [48.291160912070175, -69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "80cffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-73.59650436212006, -56.21061073758502], [-63.787104362862166, -47.30945130281312], [-69.30538945117729, -37.16389648579595], [-81.77149574422948, -33.62106978068352], [-93.29179018952695, -40.31276675619656], [-92.22703587760468, -52.6542030078627], [-73.59650436212006, -56.21061073758502]]]}}, {"type": "Feature", "properties": {"bin": "80d9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[150.11766435550595, -58.03211375817634], [152.50707693963324, -46.76027724369226], [139.65222628239854, -38.734209457703855], [125.1209872207507, -40.97555819925589], [116.79922600446484, -50.77050266836529], [128.44991707893914, -61.33081918088026], [150.11766435550595, -58.03211375817634]]]}}, {"type": "Feature", "properties": {"bin": "80bffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[167.61587312700956, -40.869133191665526], [167.0514454162491, -28.514935780874872], [155.41995693388589, -21.999746230891233], [142.84484655885802, -26.664335930022155], [139.65222628239854, -38.734209457703855], [152.50707693963324, -46.76027724369226], [167.61587312700956, -40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80f1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.24158201971537, -81.27137179020501], [113.09550074911493, -72.20470505499345], [79.178129794178, -67.53592431503803], [48.29116091207033, -69.37134141076521], [16.5431319209905, -76.14556732608257], [-34.441802308663334, -87.36469532319619], [145.24158201971537, -81.27137179020501]]]}}, {"type": "Feature", "properties": {"bin": "80ddfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-7.13862860130792, -66.19292316051032], [4.251781231586488, -56.19652224584305], [-4.379003183217645, -46.180014657090155], [-21.61710359046474, -43.912304017571415], [-34.67148393106426, -51.12825449972591], [-34.663862454939185, -62.49215566258707], [-7.13862860130792, -66.19292316051032]]]}}, {"type": "Feature", "properties": {"bin": "802bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.20077399553516, 50.77050266836529], [-81.91962699890831, 48.295316381881364], [-84.58516703208812, 37.099588896819945], [-74.64046816708004, 30.219492199828117], [-62.02252554784452, 31.877885956365837], [-54.879012779249315, 40.97555819925589], [-63.20077399553516, 50.77050266836529]]]}}, {"type": "Feature", "properties": {"bin": "8009fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [5.523646549290317, 55.706768465152265], [25.082722326707884, 58.40154487035269], [31.831280499087388, 68.92995788193983], [0.32561035194326043, 73.31022368544396], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80bdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.54970877633699, -41.45713981733576], [45.89351102822209, -31.285608665560563], [37.281129421664886, -22.885971422359724], [23.910011411582452, -24.69671125803906], [18.352921948642933, -34.99400669710761], [26.96260817646757, -43.44325276436555], [41.54970877633699, -41.45713981733576]]]}}, {"type": "Feature", "properties": {"bin": "806ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-114.02904784459382, -5.242929409571671], [-105.17323884809628, 0.8701881901666885], [-106.5596852317401, 12.150574686647923], [-118.48186571718101, 16.572699557873406], [-127.11406580207421, 8.93189150044687], [-124.29849277976768, -1.4476428602001972], [-114.02904784459382, -5.242929409571671]]]}}, {"type": "Feature", "properties": {"bin": "8017fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.33613754506084, 62.49215566258707], [145.32851606893576, 51.12825449972591], [158.38289640953528, 43.91230401757141], [175.6209968167824, 46.180014657090155], [-175.74821876841355, 56.19652224584304], [172.86137139869209, 66.19292316051032], [145.33613754506084, 62.49215566258707]]]}}, {"type": "Feature", "properties": {"bin": "808ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-84.77330656823203, 2.504604687315686], [-95.07033345637271, -4.348486695475445], [-94.55466251546314, -16.700959516615505], [-82.85149787376915, -22.29703635237555], [-72.25737566801898, -15.06330111473561], [-73.58831704620168, -2.770302579167017], [-84.77330656823203, 2.504604687315686]]]}}, {"type": "Feature", "properties": {"bin": "8073fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.2235738321257, 12.387611570633615], [126.31795557186994, 0.17017772412858456], [135.85958708181397, -7.725284543519058], [147.5198718874505, -3.454917535376019], [149.7748737561887, 8.701739974658006], [140.1697245352548, 16.779214626193742], [128.2235738321257, 12.387611570633615]]]}}, {"type": "Feature", "properties": {"bin": "80d5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-143.8832763682254, -49.77934286766213], [-151.1531311528209, -39.643310547712694], [-166.75568652434018, -37.523712365785215], [-177.97343103461534, -45.184248689706436], [-174.47635345070967, -55.706768465152265], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "80c5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.56677824334243, -27.949605976503904], [-47.69162254195799, -34.33115860097918], [-48.225599018506486, -45.2536134909801], [-34.67148393106424, -51.1282544997259], [-21.61710359046474, -43.912304017571415], [-25.255959312090397, -31.883963004159572], [-37.56677824334243, -27.949605976503904]]]}}, {"type": "Feature", "properties": {"bin": "8029fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-121.3366283326517, 28.653019311484535], [-110.25748485653355, 36.800197061174266], [-112.78800392829437, 48.011188120377795], [-128.90985381013775, 50.15451159756744], [-138.450291223663, 41.457139817335765], [-134.10648897177788, 31.285608665560563], [-121.3366283326517, 28.653019311484535]]]}}, {"type": "Feature", "properties": {"bin": "8075fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-4.013998443470486, 11.545295975414758], [-13.70814670391801, 6.270965136275773], [-11.66474754212643, -4.467031609784529], [-0.7828391751055227, -5.889921754313916], [3.9430361557864537, 3.968796976609578], [-4.013998443470486, 11.545295975414758]]]}}, {"type": "Feature", "properties": {"bin": "8013fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-131.70883908792965, 69.37134141076518], [-139.68359348160976, 59.16948256665965], [-128.90985381013775, 50.15451159756744], [-112.78800392829434, 48.011188120377795], [-98.56184761891002, 55.218550700351585], [-100.82187020582201, 67.53592431503803], [-131.70883908792965, 69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "8069fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[107.74262433198103, 15.063301114735607], [106.41168295379833, 2.7703025791670135], [115.67172827000329, -3.8245323459249], [126.31795557186994, 0.17017772412858456], [128.2235738321257, 12.387611570633615], [118.80300158646772, 19.252194904738655], [107.74262433198103, 15.063301114735607]]]}}, {"type": "Feature", "properties": {"bin": "80f3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-179.67438964805675, -73.31022368544396], [145.24158201971542, -81.27137179020501], [-34.441802308663334, -87.36469532319619], [-85.85690989815225, -76.163042830191], [-117.65465504349024, -69.3935964899183], [-148.16871950091263, -68.92995788193983], [-179.67438964805675, -73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "802dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[28.846868847179117, 39.64331054771269], [37.16428242437894, 29.339076105087567], [50.18790361279607, 29.08939213814528], [59.150326723667334, 37.656443450315685], [53.67049363562549, 49.37211750883398], [36.11672363177465, 49.77934286766213], [28.846868847179117, 39.64331054771269]]]}}, {"type": "Feature", "properties": {"bin": "80b5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-151.1531311528209, -39.643310547712694], [-142.83571757562106, -29.339076105087567], [-148.8063085814878, -18.242012526672728], [-161.63482061718392, -16.505947603561054], [-170.6193233947984, -25.60370257696877], [-166.75568652434018, -37.523712365785215], [-151.1531311528209, -39.643310547712694]]]}}, {"type": "Feature", "properties": {"bin": "80c1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-15.54272748632276, -23.00472505886229], [-25.255959312090397, -31.883963004159572], [-21.61710359046474, -43.912304017571415], [-4.379003183217645, -46.180014657090155], [4.435670774951517, -35.741206971176496], [-2.1530562884085485, -24.756909421354475], [-15.54272748632276, -23.00472505886229]]]}}, {"type": "Feature", "properties": {"bin": "801ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[5.523646549290317, 55.706768465152265], [2.0265689653846333, 45.184248689706415], [13.244313475659819, 37.523712365785194], [28.846868847179117, 39.64331054771269], [36.11672363177462, 49.77934286766213], [25.082722326707874, 58.40154487035269], [5.523646549290317, 55.706768465152265]]]}}, {"type": "Feature", "properties": {"bin": "809ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.51613498805204, -22.197541386302387], [175.98600155652952, -11.545295975414763], [166.29185329608202, -6.270965136275781], [156.37086889691636, -10.672390551299387], [155.41995693388589, -21.999746230891233], [167.0514454162491, -28.514935780874872], [177.51613498805204, -22.197541386302387]]]}}, {"type": "Feature", "properties": {"bin": "8043fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[50.18790361279607, 29.08939213814528], [54.686969353738014, 19.148858649008], [65.72669976466062, 16.170389213771347], [75.01088584624904, 22.41056616821522], [73.59261768799648, 33.70575303795421], [59.150326723667334, 37.656443450315685], [50.18790361279607, 29.08939213814528]]]}}, {"type": "Feature", "properties": {"bin": "8033fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.84694371159145, 24.756909421354468], [-175.56432922504848, 35.741206971176496], [175.6209968167824, 46.180014657090155], [158.38289640953528, 43.91230401757141], [154.7440406879096, 31.88396300415958], [164.45727251367725, 23.00472505886229], [177.84694371159145, 24.756909421354468]]]}}, {"type": "Feature", "properties": {"bin": "800dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-163.45686807900947, 76.14556732608257], [172.86137139869209, 66.19292316051032], [-175.74821876841355, 56.19652224584304], [-157.2827709187156, 54.013771481019006], [-139.6835934816099, 59.16948256665965], [-131.70883908792982, 69.37134141076518], [-163.45686807900947, 76.14556732608257]]]}}, {"type": "Feature", "properties": {"bin": "8035fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-27.492923060366778, 46.76027724369226], [-40.34777371760148, 38.734209457703855], [-37.15515344114197, 26.664335930022155], [-24.58004306611412, 21.999746230891233], [-12.948554583750909, 28.514935780874872], [-12.38412687299043, 40.869133191665526], [-27.492923060366778, 46.76027724369226]]]}}, {"type": "Feature", "properties": {"bin": "804ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[160.7733897026288, 12.194726726168001], [164.45727251367725, 23.00472505886229], [154.7440406879096, 31.88396300415958], [142.4332217566576, 27.94960597650391], [140.1697245352548, 16.779214626193742], [149.7748737561887, 8.701739974658006], [160.7733897026288, 12.194726726168001]]]}}, {"type": "Feature", "properties": {"bin": "8085fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[55.70150722023229, 1.4476428602001845], [52.88593419792579, -8.931891500446875], [61.51813428281897, -16.572699557873406], [73.4403147682599, -12.150574686647925], [74.82676115190372, -0.8701881901666917], [65.97095215540618, 5.242929409571671], [55.70150722023229, 1.4476428602001845]]]}}, {"type": "Feature", "properties": {"bin": "8005fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.14309010184775, 76.163042830191], [117.81292538828089, 66.20328559643201], [145.33613754506084, 62.49215566258707], [172.86137139869209, 66.19292316051032], [-163.45686807900947, 76.14556732608257], [145.5581976913369, 87.36469532319619], [94.14309010184775, 76.163042830191]]]}}, {"type": "Feature", "properties": {"bin": "8015fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.40349563788, 56.21061073758504], [116.21289563713786, 47.30945130281313], [131.77440098149353, 45.2536134909801], [145.32851606893576, 51.12825449972591], [145.33613754506084, 62.49215566258707], [117.81292538828089, 66.20328559643201], [106.40349563788, 56.21061073758504]]]}}, {"type": "Feature", "properties": {"bin": "807bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[52.88593419792578, -8.931891500446858], [55.70150722023228, 1.4476428602002052], [48.70181724423405, 9.876090877671759], [37.848935371300406, 8.893462571252645], [33.66361927713152, -1.6772949381945048], [41.57956251385473, -11.222876232379509], [52.88593419792578, -8.931891500446858]]]}}, {"type": "Feature", "properties": {"bin": "8071fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.45827111402537, 15.285730312483953], [179.2171608248945, 5.889921754313891], [-176.05696384421353, -3.968796976609584], [-165.41674992858833, -5.7628604914369195], [-158.59967491814012, 3.3357348575173495], [-163.71455965998953, 14.623074892227512], [-175.45827111402537, 15.285730312483953]]]}}, {"type": "Feature", "properties": {"bin": "80e3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.16871950091263, -68.92995788193983], [-117.65465504349031, -69.39359648991828], [-111.74367674561738, -58.31910366055611], [-126.32950636437451, -49.37211750883398], [-143.88327636822538, -49.779342867662145], [-154.91727767329212, -58.40154487035271], [-148.16871950091263, -68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "8055fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.948554583750909, 28.514935780874872], [-24.58004306611412, 21.999746230891233], [-23.62913110308365, 10.672390551299387], [-13.708146703917999, 6.270965136275784], [-4.013998443470486, 11.545295975414758], [-2.4838650119479646, 22.197541386302387], [-12.948554583750909, 28.514935780874872]]]}}, {"type": "Feature", "properties": {"bin": "8059fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-2.4838650119479393, 22.197541386302376], [-4.01399844347046, 11.545295975414756], [3.9430361557864635, 3.9687969766095974], [14.583250071411682, 5.7628604914369355], [18.3651793828161, 16.505947603561054], [9.380676605201614, 25.603702576968765], [-2.4838650119479393, 22.197541386302376]]]}}, {"type": "Feature", "properties": {"bin": "8099fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-11.66474754212643, -4.467031609784529], [-19.226610297371188, -12.194726726168001], [-15.54272748632276, -23.00472505886229], [-2.1530562884085485, -24.756909421354475], [4.5417288859745995, -15.28573031248396], [-0.7828391751055227, -5.889921754313916], [-11.66474754212643, -4.467031609784529]]]}}, {"type": "Feature", "properties": {"bin": "8093fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-105.17323884809628, 0.8701881901666535], [-114.02904784459382, -5.242929409571708], [-114.27330023533938, -16.170389213771344], [-104.98911415375096, -22.41056616821521], [-94.55466251546314, -16.700959516615505], [-95.07033345637271, -4.348486695475445], [-105.17323884809628, 0.8701881901666535]]]}}, {"type": "Feature", "properties": {"bin": "80edfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[169.55502245522166, -63.09505407752546], [150.11766435550592, -58.032113758176365], [128.44991707893914, -61.33081918088026], [113.09550074911493, -72.20470505499345], [145.24158201971537, -81.27137179020501], [-179.6743896480568, -73.31022368544396], [169.55502245522166, -63.09505407752546]]]}}, {"type": "Feature", "properties": {"bin": "8057fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.15515344114197, 26.664335930022155], [-46.18247457668084, 18.914756857912426], [-44.14041291818604, 7.725284543519059], [-32.48012811254947, 3.454917535376011], [-23.62913110308365, 10.672390551299387], [-24.58004306611412, 21.999746230891233], [-37.15515344114197, 26.664335930022155]]]}}, {"type": "Feature", "properties": {"bin": "80c9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[125.12098722075069, -40.97555819925589], [117.97747445215546, -31.877885956365837], [105.35953183291996, -30.219492199828117], [95.41483296791186, -37.099588896819945], [98.08037300109167, -48.295316381881364], [116.79922600446484, -50.77050266836529], [125.12098722075069, -40.97555819925589]]]}}, {"type": "Feature", "properties": {"bin": "803dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[73.59261768799648, 33.70575303795421], [75.01088584624904, 22.41056616821522], [85.44533748453688, 16.700959516615516], [97.14850212623087, 22.297036352375546], [98.22850425577052, 33.621069780683506], [86.70820981047306, 40.31276675619656], [73.59261768799648, 33.70575303795421]]]}}, {"type": "Feature", "properties": {"bin": "80b7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-93.29179018952695, -40.31276675619656], [-81.77149574422948, -33.62106978068352], [-82.85149787376915, -22.29703635237555], [-94.55466251546314, -16.700959516615505], [-104.98911415375096, -22.41056616821522], [-106.40738231200352, -33.70575303795421], [-93.29179018952695, -40.31276675619656]]]}}, {"type": "Feature", "properties": {"bin": "8079fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-138.42043748614526, 11.22287623237951], [-146.33638072286848, 1.6772949381945048], [-142.15106462869957, -8.893462571252645], [-131.29818275576594, -9.876090877671759], [-124.2984927797677, -1.4476428602001972], [-127.11406580207421, 8.93189150044686], [-138.42043748614526, 11.22287623237951]]]}}, {"type": "Feature", "properties": {"bin": "80b9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[139.65222628239854, -38.734209457703855], [142.84484655885802, -26.664335930022155], [133.81752542331915, -18.914756857912426], [122.76988803599198, -21.814638994608305], [117.97747445215552, -31.87788595636582], [125.1209872207507, -40.97555819925589], [139.65222628239854, -38.734209457703855]]]}}, {"type": "Feature", "properties": {"bin": "80bbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-177.97343103461534, -45.184248689706436], [-166.75568652434018, -37.523712365785215], [-170.6193233947984, -25.60370257696877], [177.51613498805204, -22.197541386302383], [167.0514454162491, -28.514935780874872], [167.61587312700956, -40.869133191665526], [-177.97343103461534, -45.184248689706436]]]}}, {"type": "Feature", "properties": {"bin": "802ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[154.7440406879096, 31.88396300415958], [158.38289640953528, 43.91230401757141], [145.32851606893576, 51.128254499725884], [131.77440098149353, 45.253613490980094], [132.30837745804203, 34.33115860097916], [142.4332217566576, 27.94960597650391], [154.7440406879096, 31.88396300415958]]]}}, {"type": "Feature", "properties": {"bin": "8077fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[149.7748737561887, 8.701739974658006], [147.5198718874505, -3.454917535376019], [156.37086889691633, -10.672390551299381], [166.29185329608197, -6.270965136275794], [168.33525245787357, 4.467031609784497], [160.7733897026288, 12.194726726167971], [149.7748737561887, 8.701739974658006]]]}}, {"type": "Feature", "properties": {"bin": "8065fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.41168295379833, 2.7703025791670135], [107.74262433198103, 15.063301114735607], [97.14850212623087, 22.297036352375546], [85.44533748453688, 16.700959516615516], [84.9296665436273, 4.348486695475441], [95.22669343176798, -2.504604687315686], [106.41168295379833, 2.7703025791670135]]]}}, {"type": "Feature", "properties": {"bin": "809dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[155.41995693388589, -21.999746230891233], [156.37086889691636, -10.672390551299387], [147.5198718874505, -3.454917535376019], [135.85958708181397, -7.725284543519058], [133.81752542331915, -18.914756857912426], [142.84484655885802, -26.664335930022155], [155.41995693388589, -21.999746230891233]]]}}, {"type": "Feature", "properties": {"bin": "8019fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [-29.882335644494077, 58.03211375817634], [-27.492923060366778, 46.76027724369226], [-12.38412687299043, 40.869133191665526], [2.026568965384605, 45.18424868970644], [5.523646549290303, 55.70676846515228], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80a5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-30.225126243811296, -8.70173997465801], [-39.83027546474522, -16.779214626193745], [-37.56677824334243, -27.949605976503904], [-25.255959312090397, -31.883963004159572], [-15.54272748632276, -23.00472505886229], [-19.226610297371188, -12.194726726168001], [-30.225126243811296, -8.70173997465801]]]}}, {"type": "Feature", "properties": {"bin": "804dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.02252554784452, 31.877885956365837], [-74.64046816708006, 30.219492199828103], [-75.99854824376126, 19.358823435394196], [-65.76882190787967, 14.482400617733111], [-57.23011196400804, 21.81463899460828], [-62.02252554784452, 31.877885956365837]]]}}, {"type": "Feature", "properties": {"bin": "80d3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-111.74367674561738, -58.31910366055611], [-92.22703587760468, -52.6542030078627], [-93.29179018952695, -40.31276675619656], [-106.40738231200352, -33.70575303795421], [-120.8496732763327, -37.656443450315685], [-126.32950636437451, -49.37211750883398], [-111.74367674561738, -58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "8083fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[16.28544034001047, -14.623074892227514], [21.40032508185986, -3.3357348575173527], [14.583250071411678, 5.762860491436916], [3.9430361557864537, 3.968796976609578], [-0.782839175105502, -5.889921754313901], [4.54172888597462, -15.28573031248396], [16.28544034001047, -14.623074892227514]]]}}, {"type": "Feature", "properties": {"bin": "8067fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-75.99854824376126, 19.358823435394196], [-85.63106856426799, 13.83685380982093], [-84.77330656823203, 2.504604687315686], [-73.58831704620168, -2.770302579167017], [-64.32827172999676, 3.8245323459249096], [-65.76882190787967, 14.482400617733111], [-75.99854824376126, 19.358823435394196]]]}}, {"type": "Feature", "properties": {"bin": "807ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[175.98600155652952, -11.545295975414767], [-176.05696384421353, -3.968796976609584], [179.21716082489448, 5.889921754313916], [168.3352524578736, 4.467031609784529], [166.29185329608197, -6.270965136275794], [175.98600155652952, -11.545295975414767]]]}}, {"type": "Feature", "properties": {"bin": "8087fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.36893143573202, -13.83685380982093], [95.22669343176798, -2.504604687315686], [84.9296665436273, 4.348486695475441], [74.82676115190374, -0.8701881901666614], [73.4403147682599, -12.150574686647925], [83.94979010377854, -19.26900694125663], [94.36893143573202, -13.83685380982093]]]}}, {"type": "Feature", "properties": {"bin": "803bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-54.8790127792493, 40.97555819925587], [-62.022525547844495, 31.877885956365812], [-57.23011196400803, 21.8146389946083], [-46.18247457668084, 18.914756857912426], [-37.15515344114197, 26.664335930022155], [-40.34777371760148, 38.734209457703855], [-54.8790127792493, 40.97555819925587]]]}}, {"type": "Feature", "properties": {"bin": "808bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-61.19699841353227, -19.252194904738662], [-51.77642616787428, -12.387611570633618], [-53.68204442813005, -0.17017772412858934], [-64.32827172999673, 3.8245323459248906], [-73.58831704620168, -2.770302579167017], [-72.25737566801898, -15.06330111473561], [-61.19699841353227, -19.252194904738662]]]}}, {"type": "Feature", "properties": {"bin": "80d7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[40.31640651839021, -59.16948256665967], [51.09014618986225, -50.15451159756744], [41.54970877633699, -41.45713981733576], [26.96260817646757, -43.44325276436555], [22.717229081284426, -54.01377148101902], [40.31640651839021, -59.16948256665967]]]}}, {"type": "Feature", "properties": {"bin": "8021fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[53.67049363562549, 49.37211750883398], [59.150326723667334, 37.656443450315685], [73.59261768799648, 33.70575303795421], [86.70820981047306, 40.31276675619656], [87.77296412239532, 52.6542030078627], [68.25632325438265, 58.31910366055611], [53.67049363562549, 49.37211750883398]]]}}, {"type": "Feature", "properties": {"bin": "80c3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.78710436286213, -47.30945130281312], [-48.225599018506486, -45.2536134909801], [-47.69162254195798, -34.331158600979144], [-59.496606140042005, -29.892985338693553], [-69.30538945117729, -37.16389648579593], [-63.78710436286213, -47.30945130281312]]]}}, {"type": "Feature", "properties": {"bin": "8027fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-98.56184761891002, 55.218550700351585], [-112.78800392829434, 48.011188120377795], [-110.25748485653355, 36.800197061174266], [-96.66289038040519, 31.619530626908528], [-84.58516703208812, 37.099588896819945], [-81.91962699890831, 48.295316381881364], [-98.56184761891002, 55.218550700351585]]]}}, {"type": "Feature", "properties": {"bin": "8007fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[0.3256103519432223, 73.31022368544396], [-34.758417980284634, 81.27137179020501], [-66.90449925088507, 72.20470505499345], [-51.550082921060856, 61.33081918088026], [-29.88233564449411, 58.03211375817635], [-10.444977544778329, 63.09505407752546], [0.3256103519432223, 73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "80cbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[45.89351102822212, -31.28560866556057], [41.54970877633701, -41.45713981733577], [51.09014618986225, -50.15451159756744], [67.21199607170563, -48.011188120377795], [69.74251514346645, -36.800197061174266], [58.663371667348294, -28.65301931148454], [45.89351102822212, -31.28560866556057]]]}}, {"type": "Feature", "properties": {"bin": "8003fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.5581976913369, 87.36469532319619], [-163.45686807900947, 76.14556732608257], [-131.70883908792965, 69.37134141076518], [-100.82187020582201, 67.53592431503803], [-66.90449925088507, 72.20470505499345], [-34.758417980284634, 81.27137179020501], [145.5581976913369, 87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "809bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-170.6193233947984, -25.60370257696877], [-161.63482061718392, -16.505947603561054], [-165.41674992858833, -5.7628604914369355], [-176.05696384421356, -3.9687969766095974], [175.98600155652952, -11.545295975414767], [177.51613498805204, -22.197541386302383], [-170.6193233947984, -25.60370257696877]]]}}, {"type": "Feature", "properties": {"bin": "807dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-19.226610297371195, -12.194726726167978], [-11.66474754212644, -4.467031609784501], [-13.70814670391801, 6.270965136275773], [-23.62913110308366, 10.672390551299365], [-32.48012811254947, 3.454917535376011], [-30.225126243811296, -8.70173997465801], [-19.226610297371195, -12.194726726167978]]]}}, {"type": "Feature", "properties": {"bin": "8049fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-106.5596852317401, 12.150574686647923], [-96.05020989622146, 19.26900694125663], [-96.66289038040519, 31.619530626908528], [-110.25748485653355, 36.800197061174266], [-121.3366283326517, 28.653019311484535], [-118.48186571718101, 16.572699557873406], [-106.5596852317401, 12.150574686647923]]]}}, {"type": "Feature", "properties": {"bin": "80effffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-34.441802308663334, -87.36469532319619], [16.5431319209905, -76.14556732608257], [-7.13862860130792, -66.19292316051032], [-34.663862454939185, -62.49215566258707], [-62.187074611719154, -66.20328559643201], [-85.85690989815225, -76.163042830191], [-34.441802308663334, -87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "801bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-51.550082921060856, 61.33081918088026], [-63.20077399553516, 50.77050266836529], [-54.8790127792493, 40.97555819925587], [-40.34777371760148, 38.734209457703855], [-27.492923060366778, 46.76027724369226], [-29.882335644494077, 58.03211375817634], [-51.550082921060856, 61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "805bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[179.21716082489448, 5.889921754313916], [-175.4582711140254, 15.285730312483956], [177.84694371159145, 24.756909421354468], [164.45727251367725, 23.00472505886229], [160.7733897026288, 12.194726726168001], [168.3352524578736, 4.467031609784529], [179.21716082489448, 5.889921754313916]]]}}, {"type": "Feature", "properties": {"bin": "804bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[120.50339385995798, 29.89298533869355], [118.80300158646772, 19.252194904738655], [128.2235738321257, 12.387611570633615], [140.1697245352548, 16.779214626193742], [142.4332217566576, 27.949605976503882], [132.30837745804203, 34.33115860097915], [120.50339385995798, 29.89298533869355]]]}}, {"type": "Feature", "properties": {"bin": "8053fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.16428242437894, 29.339076105087567], [31.19369141851222, 18.24201252667272], [37.848935371300406, 8.893462571252657], [48.701817244234036, 9.876090877671759], [54.68696935373798, 19.14885864900799], [50.187903612796035, 29.08939213814527], [37.16428242437894, 29.339076105087567]]]}}, {"type": "Feature", "properties": {"bin": "8081fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-39.83027546474522, -16.779214626193745], [-30.225126243811296, -8.70173997465801], [-32.48012811254947, 3.454917535376011], [-44.14041291818604, 7.725284543519059], [-53.68204442813005, -0.17017772412858934], [-51.77642616787428, -12.387611570633618], [-39.83027546474522, -16.779214626193745]]]}}, {"type": "Feature", "properties": {"bin": "806dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-96.05020989622146, 19.26900694125663], [-106.5596852317401, 12.150574686647923], [-105.17323884809628, 0.8701881901666535], [-95.07033345637271, -4.348486695475445], [-84.77330656823203, 2.504604687315686], [-85.63106856426799, 13.83685380982093], [-96.05020989622146, 19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "80a1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-129.81209638720398, -29.08939213814527], [-125.31303064626204, -19.148858649007984], [-131.29818275576596, -9.876090877671768], [-142.1510646286996, -8.893462571252659], [-148.8063085814878, -18.242012526672728], [-142.83571757562106, -29.339076105087567], [-129.81209638720398, -29.08939213814527]]]}}, {"type": "Feature", "properties": {"bin": "8061fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[84.9296665436273, 4.348486695475441], [85.44533748453688, 16.700959516615516], [75.01088584624907, 22.41056616821523], [65.72669976466062, 16.170389213771358], [65.9709521554062, 5.242929409571698], [74.82676115190374, -0.8701881901666614], [84.9296665436273, 4.348486695475441]]]}}]} +{"type": "FeatureCollection", "features": [{"type": "Feature", "id": 579451423930974207, "properties": {"bin": "80a9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-47.69162254195798, -34.331158600979144], [-37.56677824334244, -27.94960597650389], [-39.83027546474522, -16.779214626193745], [-51.77642616787428, -12.387611570633618], [-61.19699841353227, -19.252194904738662], [-59.496606140042005, -29.892985338693553], [-47.69162254195798, -34.331158600979144]]]}}, {"type": "Feature", "id": 580331033233195007, "properties": {"bin": "80dbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-174.47635345070967, -55.70676846515227], [-177.97343103461537, -45.18424868970644], [167.61587312700956, -40.869133191665526], [152.50707693963324, -46.76027724369226], [150.11766435550595, -58.03211375817634], [169.5550224552217, -63.09505407752544], [-174.47635345070967, -55.70676846515227]]]}}, {"type": "Feature", "properties": {"bin": "8031fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[116.21289563713785, 47.30945130281313], [110.69461054882274, 37.16389648579593], [120.50339385995798, 29.89298533869355], [132.30837745804203, 34.33115860097915], [131.77440098149353, 45.253613490980094], [116.21289563713785, 47.30945130281313]]]}}, {"type": "Feature", "properties": {"bin": "8001fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[31.831280499087402, 68.92995788193983], [62.345344956509784, 69.3935964899183], [94.14309010184775, 76.163042830191], [145.5581976913369, 87.36469532319619], [-34.75841798028471, 81.27137179020501], [0.32561035194326043, 73.31022368544396], [31.831280499087402, 68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "800ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-66.90449925088507, 72.20470505499345], [-100.82187020582201, 67.53592431503803], [-98.56184761891002, 55.218550700351585], [-81.91962699890831, 48.295316381881364], [-63.20077399553516, 50.77050266836529], [-51.550082921060856, 61.33081918088026], [-66.90449925088507, 72.20470505499345]]]}}, {"type": "Feature", "properties": {"bin": "800bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[68.25632325438265, 58.31910366055611], [87.77296412239532, 52.6542030078627], [106.40349563788, 56.21061073758504], [117.81292538828089, 66.20328559643201], [94.14309010184775, 76.163042830191], [62.345344956509784, 69.3935964899183], [68.25632325438265, 58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "803ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[13.244313475659819, 37.523712365785194], [9.380676605201614, 25.603702576968765], [18.3651793828161, 16.505947603561054], [31.19369141851222, 18.24201252667272], [37.16428242437894, 29.339076105087567], [28.846868847179117, 39.64331054771269], [13.244313475659819, 37.523712365785194]]]}}, {"type": "Feature", "properties": {"bin": "80e1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[79.178129794178, -67.53592431503803], [81.43815238108998, -55.21855070035159], [67.21199607170564, -48.011188120377795], [51.09014618986225, -50.15451159756744], [40.31640651839021, -59.16948256665967], [48.29116091207033, -69.37134141076521], [79.178129794178, -67.53592431503803]]]}}, {"type": "Feature", "properties": {"bin": "80adfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.352921948642933, -34.99400669710761], [23.910011411582452, -24.69671125803906], [16.28544034001047, -14.623074892227514], [4.54172888597462, -15.28573031248396], [-2.1530562884085485, -24.756909421354475], [4.435670774951517, -35.741206971176496], [18.352921948642933, -34.99400669710761]]]}}, {"type": "Feature", "properties": {"bin": "8025fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[87.77296412239532, 52.6542030078627], [86.70820981047306, 40.31276675619656], [98.22850425577052, 33.621069780683506], [110.69461054882271, 37.16389648579594], [116.21289563713785, 47.30945130281313], [106.40349563787996, 56.21061073758502], [87.77296412239532, 52.6542030078627]]]}}, {"type": "Feature", "properties": {"bin": "80e9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-117.65465504349024, -69.3935964899183], [-85.85690989815225, -76.163042830191], [-62.187074611719154, -66.20328559643201], [-73.59650436212002, -56.21061073758504], [-92.22703587760468, -52.6542030078627], [-111.74367674561738, -58.31910366055611], [-117.65465504349024, -69.3935964899183]]]}}, {"type": "Feature", "properties": {"bin": "80b1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-120.8496732763327, -37.656443450315685], [-106.40738231200352, -33.70575303795421], [-104.98911415375096, -22.41056616821522], [-114.27330023533938, -16.170389213771347], [-125.313030646262, -19.148858649008005], [-129.81209638720395, -29.089392138145286], [-120.8496732763327, -37.656443450315685]]]}}, {"type": "Feature", "properties": {"bin": "8095fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[115.67172827000329, -3.8245323459249], [114.23117809212035, -14.482400617733104], [122.76988803599195, -21.81463899460828], [133.81752542331913, -18.9147568579124], [135.85958708181397, -7.725284543519058], [126.31795557186994, 0.17017772412858456], [115.67172827000329, -3.8245323459249]]]}}, {"type": "Feature", "properties": {"bin": "80cdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[98.08037300109167, -48.295316381881364], [95.41483296791186, -37.099588896819945], [83.33710961959481, -31.619530626908528], [69.74251514346645, -36.800197061174266], [67.21199607170564, -48.011188120377795], [81.43815238108998, -55.21855070035159], [98.08037300109167, -48.295316381881364]]]}}, {"type": "Feature", "properties": {"bin": "80e5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.44991707893914, -61.33081918088026], [116.79922600446484, -50.77050266836529], [98.08037300109167, -48.295316381881364], [81.43815238108998, -55.21855070035159], [79.178129794178, -67.53592431503803], [113.09550074911493, -72.20470505499345], [128.44991707893914, -61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "8089fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.8063085814878, -18.242012526672728], [-142.1510646286996, -8.893462571252659], [-146.33638072286848, 1.6772949381945048], [-158.59967491814012, 3.3357348575173495], [-165.41674992858833, -5.7628604914369355], [-161.63482061718392, -16.505947603561054], [-148.8063085814878, -18.242012526672728]]]}}, {"type": "Feature", "properties": {"bin": "8091fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-125.313030646262, -19.148858649008005], [-114.27330023533938, -16.170389213771344], [-114.02904784459382, -5.242929409571671], [-124.29849277976768, -1.4476428602001972], [-131.29818275576594, -9.876090877671759], [-125.313030646262, -19.148858649008005]]]}}, {"type": "Feature", "properties": {"bin": "80ebfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-174.47635345070967, -55.70676846515227], [169.55502245522166, -63.09505407752546], [-179.6743896480568, -73.31022368544396], [-148.16871950091263, -68.92995788193983], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "8047fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.56432922504848, 35.741206971176496], [177.84694371159145, 24.756909421354468], [-175.45827111402537, 15.285730312483953], [-163.71455965998953, 14.623074892227512], [-156.08998858841755, 24.696711258039056], [-161.64707805135708, 34.9940066971076], [-175.56432922504848, 35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "8039fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.38412687299043, 40.869133191665526], [-12.948554583750909, 28.514935780874872], [-2.4838650119479393, 22.197541386302376], [9.380676605201614, 25.603702576968765], [13.244313475659819, 37.523712365785194], [2.0265689653846333, 45.184248689706415], [-12.38412687299043, 40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80dffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.187074611719154, -66.20328559643201], [-34.663862454939185, -62.49215566258707], [-34.67148393106426, -51.12825449972591], [-48.22559901850649, -45.2536134909801], [-63.78710436286213, -47.30945130281312], [-73.59650436212002, -56.21061073758504], [-62.187074611719154, -66.20328559643201]]]}}, {"type": "Feature", "properties": {"bin": "80abfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[61.51813428281897, -16.572699557873406], [58.663371667348294, -28.65301931148454], [69.74251514346645, -36.800197061174266], [83.33710961959481, -31.619530626908528], [83.94979010377854, -19.26900694125663], [73.4403147682599, -12.150574686647925], [61.51813428281897, -16.572699557873406]]]}}, {"type": "Feature", "properties": {"bin": "8063fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[54.68696935373798, 19.14885864900799], [48.70181724423405, 9.876090877671759], [55.70150722023229, 1.4476428602001845], [65.97095215540618, 5.242929409571671], [65.72669976466062, 16.170389213771358], [54.68696935373798, 19.14885864900799]]]}}, {"type": "Feature", "properties": {"bin": "80b3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-72.25737566801898, -15.06330111473561], [-82.85149787376915, -22.29703635237555], [-81.77149574422948, -33.621069780683506], [-69.30538945117729, -37.16389648579593], [-59.496606140042026, -29.89298533869355], [-61.196998413532306, -19.252194904738655], [-72.25737566801898, -15.06330111473561]]]}}, {"type": "Feature", "properties": {"bin": "8037fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-153.03739182353243, 43.44325276436555], [-161.64707805135708, 34.9940066971076], [-156.08998858841755, 24.696711258039056], [-142.7188705783351, 22.885971422359724], [-134.1064889717779, 31.285608665560563], [-138.45029122366302, 41.45713981733576], [-153.03739182353243, 43.44325276436555]]]}}, {"type": "Feature", "properties": {"bin": "80a3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.57956251385473, -11.222876232379509], [37.281129421664886, -22.885971422359724], [45.89351102822212, -31.28560866556057], [58.663371667348294, -28.65301931148454], [61.51813428281897, -16.572699557873406], [52.88593419792579, -8.931891500446875], [41.57956251385473, -11.222876232379509]]]}}, {"type": "Feature", "properties": {"bin": "8011fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[25.082722326707884, 58.40154487035269], [36.11672363177465, 49.77934286766213], [53.67049363562549, 49.37211750883398], [68.25632325438265, 58.31910366055611], [62.34534495650971, 69.39359648991828], [31.831280499087388, 68.92995788193983], [25.082722326707884, 58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "808dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[114.23117809212033, -14.482400617733115], [115.67172827000326, -3.8245323459249176], [106.41168295379833, 2.7703025791670135], [95.22669343176798, -2.504604687315686], [94.36893143573202, -13.83685380982093], [104.00145175623875, -19.358823435394196], [114.23117809212033, -14.482400617733115]]]}}, {"type": "Feature", "properties": {"bin": "8051fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-127.11406580207421, 8.93189150044687], [-118.48186571718101, 16.572699557873406], [-121.3366283326517, 28.653019311484535], [-134.10648897177788, 31.285608665560563], [-142.7188705783351, 22.885971422359724], [-138.42043748614526, 11.22287623237951], [-127.11406580207421, 8.93189150044687]]]}}, {"type": "Feature", "properties": {"bin": "801dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6835934816099, 59.16948256665965], [-157.28277091871553, 54.01377148101902], [-153.03739182353243, 43.44325276436555], [-138.45029122366302, 41.45713981733576], [-128.90985381013775, 50.15451159756744], [-139.6835934816099, 59.16948256665965]]]}}, {"type": "Feature", "properties": {"bin": "80d1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[4.435670774951517, -35.741206971176496], [-4.379003183217645, -46.180014657090155], [4.251781231586493, -56.19652224584303], [22.717229081284426, -54.01377148101902], [26.962608176467533, -43.44325276436556], [18.3529219486429, -34.99400669710762], [4.435670774951517, -35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "80c7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-143.88327636822538, -49.779342867662145], [-126.32950636437451, -49.37211750883398], [-120.8496732763327, -37.656443450315685], [-129.81209638720395, -29.089392138145286], [-142.83571757562106, -29.339076105087567], [-151.1531311528209, -39.643310547712694], [-143.88327636822538, -49.779342867662145]]]}}, {"type": "Feature", "properties": {"bin": "8023fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-161.64707805135708, 34.994006697107615], [-153.03739182353246, 43.44325276436556], [-157.28277091871553, 54.01377148101902], [-175.74821876841347, 56.19652224584303], [175.6209968167824, 46.180014657090155], [-175.56432922504848, 35.741206971176496], [-161.64707805135708, 34.994006697107615]]]}}, {"type": "Feature", "properties": {"bin": "8041fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[118.80300158646772, 19.252194904738648], [120.50339385995798, 29.892985338693542], [110.69461054882274, 37.16389648579593], [98.22850425577053, 33.6210697806835], [97.14850212623087, 22.297036352375546], [107.74262433198103, 15.063301114735607], [118.80300158646772, 19.252194904738648]]]}}, {"type": "Feature", "properties": {"bin": "80a7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[117.97747445215552, -31.87788595636582], [122.76988803599195, -21.81463899460828], [114.23117809212033, -14.482400617733115], [104.00145175623875, -19.358823435394196], [105.35953183291994, -30.219492199828117], [117.97747445215552, -31.87788595636582]]]}}, {"type": "Feature", "properties": {"bin": "80affffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[83.94979010377854, -19.26900694125663], [83.33710961959481, -31.619530626908528], [95.41483296791186, -37.09958889681994], [105.35953183291994, -30.219492199828117], [104.00145175623874, -19.358823435394214], [94.36893143573201, -13.836853809820951], [83.94979010377854, -19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "806bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.3651793828161, 16.505947603561054], [14.583250071411682, 5.7628604914369355], [21.40032508185986, -3.3357348575173527], [33.66361927713152, -1.6772949381945048], [37.848935371300406, 8.893462571252657], [31.19369141851222, 18.24201252667272], [18.3651793828161, 16.505947603561054]]]}}, {"type": "Feature", "properties": {"bin": "805dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-156.08998858841755, 24.696711258039056], [-163.71455965998953, 14.623074892227512], [-158.59967491814012, 3.3357348575173495], [-146.33638072286848, 1.6772949381945048], [-138.42043748614526, 11.22287623237951], [-142.7188705783351, 22.885971422359724], [-156.08998858841755, 24.696711258039056]]]}}, {"type": "Feature", "properties": {"bin": "805ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-53.68204442813005, -0.17017772412858934], [-44.14041291818604, 7.725284543519059], [-46.18247457668085, 18.9147568579124], [-57.23011196400804, 21.81463899460828], [-65.76882190787964, 14.482400617733116], [-64.32827172999673, 3.8245323459248906], [-53.68204442813005, -0.17017772412858934]]]}}, {"type": "Feature", "properties": {"bin": "8045fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-85.63106856426799, 13.836853809820953], [-75.99854824376126, 19.35882343539422], [-74.64046816708006, 30.219492199828103], [-84.58516703208814, 37.099588896819924], [-96.66289038040519, 31.619530626908528], [-96.05020989622146, 19.26900694125663], [-85.63106856426799, 13.836853809820953]]]}}, {"type": "Feature", "properties": {"bin": "8097fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.281129421664886, -22.885971422359724], [41.57956251385473, -11.222876232379509], [33.66361927713152, -1.6772949381945048], [21.40032508185986, -3.3357348575173527], [16.28544034001047, -14.623074892227514], [23.910011411582452, -24.69671125803906], [37.281129421664886, -22.885971422359724]]]}}, {"type": "Feature", "properties": {"bin": "80e7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[48.291160912070175, -69.37134141076518], [40.31640651839009, -59.16948256665965], [22.717229081284408, -54.01377148101902], [4.251781231586488, -56.19652224584305], [-7.13862860130792, -66.19292316051032], [16.5431319209905, -76.14556732608257], [48.291160912070175, -69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "80cffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-73.59650436212006, -56.21061073758502], [-63.787104362862166, -47.30945130281312], [-69.30538945117729, -37.16389648579595], [-81.77149574422948, -33.62106978068352], [-93.29179018952695, -40.31276675619656], [-92.22703587760468, -52.6542030078627], [-73.59650436212006, -56.21061073758502]]]}}, {"type": "Feature", "properties": {"bin": "80d9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[150.11766435550595, -58.03211375817634], [152.50707693963324, -46.76027724369226], [139.65222628239854, -38.734209457703855], [125.1209872207507, -40.97555819925589], [116.79922600446484, -50.77050266836529], [128.44991707893914, -61.33081918088026], [150.11766435550595, -58.03211375817634]]]}}, {"type": "Feature", "properties": {"bin": "80bffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[167.61587312700956, -40.869133191665526], [167.0514454162491, -28.514935780874872], [155.41995693388589, -21.999746230891233], [142.84484655885802, -26.664335930022155], [139.65222628239854, -38.734209457703855], [152.50707693963324, -46.76027724369226], [167.61587312700956, -40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80f1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.24158201971537, -81.27137179020501], [113.09550074911493, -72.20470505499345], [79.178129794178, -67.53592431503803], [48.29116091207033, -69.37134141076521], [16.5431319209905, -76.14556732608257], [-34.441802308663334, -87.36469532319619], [145.24158201971537, -81.27137179020501]]]}}, {"type": "Feature", "properties": {"bin": "80ddfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-7.13862860130792, -66.19292316051032], [4.251781231586488, -56.19652224584305], [-4.379003183217645, -46.180014657090155], [-21.61710359046474, -43.912304017571415], [-34.67148393106426, -51.12825449972591], [-34.663862454939185, -62.49215566258707], [-7.13862860130792, -66.19292316051032]]]}}, {"type": "Feature", "properties": {"bin": "802bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.20077399553516, 50.77050266836529], [-81.91962699890831, 48.295316381881364], [-84.58516703208812, 37.099588896819945], [-74.64046816708004, 30.219492199828117], [-62.02252554784452, 31.877885956365837], [-54.879012779249315, 40.97555819925589], [-63.20077399553516, 50.77050266836529]]]}}, {"type": "Feature", "properties": {"bin": "8009fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [5.523646549290317, 55.706768465152265], [25.082722326707884, 58.40154487035269], [31.831280499087388, 68.92995788193983], [0.32561035194326043, 73.31022368544396], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80bdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.54970877633699, -41.45713981733576], [45.89351102822209, -31.285608665560563], [37.281129421664886, -22.885971422359724], [23.910011411582452, -24.69671125803906], [18.352921948642933, -34.99400669710761], [26.96260817646757, -43.44325276436555], [41.54970877633699, -41.45713981733576]]]}}, {"type": "Feature", "properties": {"bin": "806ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-114.02904784459382, -5.242929409571671], [-105.17323884809628, 0.8701881901666885], [-106.5596852317401, 12.150574686647923], [-118.48186571718101, 16.572699557873406], [-127.11406580207421, 8.93189150044687], [-124.29849277976768, -1.4476428602001972], [-114.02904784459382, -5.242929409571671]]]}}, {"type": "Feature", "properties": {"bin": "8017fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.33613754506084, 62.49215566258707], [145.32851606893576, 51.12825449972591], [158.38289640953528, 43.91230401757141], [175.6209968167824, 46.180014657090155], [-175.74821876841355, 56.19652224584304], [172.86137139869209, 66.19292316051032], [145.33613754506084, 62.49215566258707]]]}}, {"type": "Feature", "properties": {"bin": "808ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-84.77330656823203, 2.504604687315686], [-95.07033345637271, -4.348486695475445], [-94.55466251546314, -16.700959516615505], [-82.85149787376915, -22.29703635237555], [-72.25737566801898, -15.06330111473561], [-73.58831704620168, -2.770302579167017], [-84.77330656823203, 2.504604687315686]]]}}, {"type": "Feature", "properties": {"bin": "8073fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.2235738321257, 12.387611570633615], [126.31795557186994, 0.17017772412858456], [135.85958708181397, -7.725284543519058], [147.5198718874505, -3.454917535376019], [149.7748737561887, 8.701739974658006], [140.1697245352548, 16.779214626193742], [128.2235738321257, 12.387611570633615]]]}}, {"type": "Feature", "properties": {"bin": "80d5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-143.8832763682254, -49.77934286766213], [-151.1531311528209, -39.643310547712694], [-166.75568652434018, -37.523712365785215], [-177.97343103461534, -45.184248689706436], [-174.47635345070967, -55.706768465152265], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "80c5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.56677824334243, -27.949605976503904], [-47.69162254195799, -34.33115860097918], [-48.225599018506486, -45.2536134909801], [-34.67148393106424, -51.1282544997259], [-21.61710359046474, -43.912304017571415], [-25.255959312090397, -31.883963004159572], [-37.56677824334243, -27.949605976503904]]]}}, {"type": "Feature", "properties": {"bin": "8029fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-121.3366283326517, 28.653019311484535], [-110.25748485653355, 36.800197061174266], [-112.78800392829437, 48.011188120377795], [-128.90985381013775, 50.15451159756744], [-138.450291223663, 41.457139817335765], [-134.10648897177788, 31.285608665560563], [-121.3366283326517, 28.653019311484535]]]}}, {"type": "Feature", "properties": {"bin": "8075fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-4.013998443470486, 11.545295975414758], [-13.70814670391801, 6.270965136275773], [-11.66474754212643, -4.467031609784529], [-0.7828391751055227, -5.889921754313916], [3.9430361557864537, 3.968796976609578], [-4.013998443470486, 11.545295975414758]]]}}, {"type": "Feature", "properties": {"bin": "8013fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-131.70883908792965, 69.37134141076518], [-139.68359348160976, 59.16948256665965], [-128.90985381013775, 50.15451159756744], [-112.78800392829434, 48.011188120377795], [-98.56184761891002, 55.218550700351585], [-100.82187020582201, 67.53592431503803], [-131.70883908792965, 69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "8069fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[107.74262433198103, 15.063301114735607], [106.41168295379833, 2.7703025791670135], [115.67172827000329, -3.8245323459249], [126.31795557186994, 0.17017772412858456], [128.2235738321257, 12.387611570633615], [118.80300158646772, 19.252194904738655], [107.74262433198103, 15.063301114735607]]]}}, {"type": "Feature", "properties": {"bin": "80f3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-179.67438964805675, -73.31022368544396], [145.24158201971542, -81.27137179020501], [-34.441802308663334, -87.36469532319619], [-85.85690989815225, -76.163042830191], [-117.65465504349024, -69.3935964899183], [-148.16871950091263, -68.92995788193983], [-179.67438964805675, -73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "802dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[28.846868847179117, 39.64331054771269], [37.16428242437894, 29.339076105087567], [50.18790361279607, 29.08939213814528], [59.150326723667334, 37.656443450315685], [53.67049363562549, 49.37211750883398], [36.11672363177465, 49.77934286766213], [28.846868847179117, 39.64331054771269]]]}}, {"type": "Feature", "properties": {"bin": "80b5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-151.1531311528209, -39.643310547712694], [-142.83571757562106, -29.339076105087567], [-148.8063085814878, -18.242012526672728], [-161.63482061718392, -16.505947603561054], [-170.6193233947984, -25.60370257696877], [-166.75568652434018, -37.523712365785215], [-151.1531311528209, -39.643310547712694]]]}}, {"type": "Feature", "properties": {"bin": "80c1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-15.54272748632276, -23.00472505886229], [-25.255959312090397, -31.883963004159572], [-21.61710359046474, -43.912304017571415], [-4.379003183217645, -46.180014657090155], [4.435670774951517, -35.741206971176496], [-2.1530562884085485, -24.756909421354475], [-15.54272748632276, -23.00472505886229]]]}}, {"type": "Feature", "properties": {"bin": "801ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[5.523646549290317, 55.706768465152265], [2.0265689653846333, 45.184248689706415], [13.244313475659819, 37.523712365785194], [28.846868847179117, 39.64331054771269], [36.11672363177462, 49.77934286766213], [25.082722326707874, 58.40154487035269], [5.523646549290317, 55.706768465152265]]]}}, {"type": "Feature", "properties": {"bin": "809ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.51613498805204, -22.197541386302387], [175.98600155652952, -11.545295975414763], [166.29185329608202, -6.270965136275781], [156.37086889691636, -10.672390551299387], [155.41995693388589, -21.999746230891233], [167.0514454162491, -28.514935780874872], [177.51613498805204, -22.197541386302387]]]}}, {"type": "Feature", "properties": {"bin": "8043fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[50.18790361279607, 29.08939213814528], [54.686969353738014, 19.148858649008], [65.72669976466062, 16.170389213771347], [75.01088584624904, 22.41056616821522], [73.59261768799648, 33.70575303795421], [59.150326723667334, 37.656443450315685], [50.18790361279607, 29.08939213814528]]]}}, {"type": "Feature", "properties": {"bin": "8033fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.84694371159145, 24.756909421354468], [-175.56432922504848, 35.741206971176496], [175.6209968167824, 46.180014657090155], [158.38289640953528, 43.91230401757141], [154.7440406879096, 31.88396300415958], [164.45727251367725, 23.00472505886229], [177.84694371159145, 24.756909421354468]]]}}, {"type": "Feature", "properties": {"bin": "800dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-163.45686807900947, 76.14556732608257], [172.86137139869209, 66.19292316051032], [-175.74821876841355, 56.19652224584304], [-157.2827709187156, 54.013771481019006], [-139.6835934816099, 59.16948256665965], [-131.70883908792982, 69.37134141076518], [-163.45686807900947, 76.14556732608257]]]}}, {"type": "Feature", "properties": {"bin": "8035fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-27.492923060366778, 46.76027724369226], [-40.34777371760148, 38.734209457703855], [-37.15515344114197, 26.664335930022155], [-24.58004306611412, 21.999746230891233], [-12.948554583750909, 28.514935780874872], [-12.38412687299043, 40.869133191665526], [-27.492923060366778, 46.76027724369226]]]}}, {"type": "Feature", "properties": {"bin": "804ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[160.7733897026288, 12.194726726168001], [164.45727251367725, 23.00472505886229], [154.7440406879096, 31.88396300415958], [142.4332217566576, 27.94960597650391], [140.1697245352548, 16.779214626193742], [149.7748737561887, 8.701739974658006], [160.7733897026288, 12.194726726168001]]]}}, {"type": "Feature", "properties": {"bin": "8085fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[55.70150722023229, 1.4476428602001845], [52.88593419792579, -8.931891500446875], [61.51813428281897, -16.572699557873406], [73.4403147682599, -12.150574686647925], [74.82676115190372, -0.8701881901666917], [65.97095215540618, 5.242929409571671], [55.70150722023229, 1.4476428602001845]]]}}, {"type": "Feature", "properties": {"bin": "8005fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.14309010184775, 76.163042830191], [117.81292538828089, 66.20328559643201], [145.33613754506084, 62.49215566258707], [172.86137139869209, 66.19292316051032], [-163.45686807900947, 76.14556732608257], [145.5581976913369, 87.36469532319619], [94.14309010184775, 76.163042830191]]]}}, {"type": "Feature", "properties": {"bin": "8015fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.40349563788, 56.21061073758504], [116.21289563713786, 47.30945130281313], [131.77440098149353, 45.2536134909801], [145.32851606893576, 51.12825449972591], [145.33613754506084, 62.49215566258707], [117.81292538828089, 66.20328559643201], [106.40349563788, 56.21061073758504]]]}}, {"type": "Feature", "properties": {"bin": "807bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[52.88593419792578, -8.931891500446858], [55.70150722023228, 1.4476428602002052], [48.70181724423405, 9.876090877671759], [37.848935371300406, 8.893462571252645], [33.66361927713152, -1.6772949381945048], [41.57956251385473, -11.222876232379509], [52.88593419792578, -8.931891500446858]]]}}, {"type": "Feature", "properties": {"bin": "8071fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.45827111402537, 15.285730312483953], [179.2171608248945, 5.889921754313891], [-176.05696384421353, -3.968796976609584], [-165.41674992858833, -5.7628604914369195], [-158.59967491814012, 3.3357348575173495], [-163.71455965998953, 14.623074892227512], [-175.45827111402537, 15.285730312483953]]]}}, {"type": "Feature", "properties": {"bin": "80e3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.16871950091263, -68.92995788193983], [-117.65465504349031, -69.39359648991828], [-111.74367674561738, -58.31910366055611], [-126.32950636437451, -49.37211750883398], [-143.88327636822538, -49.779342867662145], [-154.91727767329212, -58.40154487035271], [-148.16871950091263, -68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "8055fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.948554583750909, 28.514935780874872], [-24.58004306611412, 21.999746230891233], [-23.62913110308365, 10.672390551299387], [-13.708146703917999, 6.270965136275784], [-4.013998443470486, 11.545295975414758], [-2.4838650119479646, 22.197541386302387], [-12.948554583750909, 28.514935780874872]]]}}, {"type": "Feature", "properties": {"bin": "8059fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-2.4838650119479393, 22.197541386302376], [-4.01399844347046, 11.545295975414756], [3.9430361557864635, 3.9687969766095974], [14.583250071411682, 5.7628604914369355], [18.3651793828161, 16.505947603561054], [9.380676605201614, 25.603702576968765], [-2.4838650119479393, 22.197541386302376]]]}}, {"type": "Feature", "properties": {"bin": "8099fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-11.66474754212643, -4.467031609784529], [-19.226610297371188, -12.194726726168001], [-15.54272748632276, -23.00472505886229], [-2.1530562884085485, -24.756909421354475], [4.5417288859745995, -15.28573031248396], [-0.7828391751055227, -5.889921754313916], [-11.66474754212643, -4.467031609784529]]]}}, {"type": "Feature", "properties": {"bin": "8093fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-105.17323884809628, 0.8701881901666535], [-114.02904784459382, -5.242929409571708], [-114.27330023533938, -16.170389213771344], [-104.98911415375096, -22.41056616821521], [-94.55466251546314, -16.700959516615505], [-95.07033345637271, -4.348486695475445], [-105.17323884809628, 0.8701881901666535]]]}}, {"type": "Feature", "properties": {"bin": "80edfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[169.55502245522166, -63.09505407752546], [150.11766435550592, -58.032113758176365], [128.44991707893914, -61.33081918088026], [113.09550074911493, -72.20470505499345], [145.24158201971537, -81.27137179020501], [-179.6743896480568, -73.31022368544396], [169.55502245522166, -63.09505407752546]]]}}, {"type": "Feature", "properties": {"bin": "8057fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.15515344114197, 26.664335930022155], [-46.18247457668084, 18.914756857912426], [-44.14041291818604, 7.725284543519059], [-32.48012811254947, 3.454917535376011], [-23.62913110308365, 10.672390551299387], [-24.58004306611412, 21.999746230891233], [-37.15515344114197, 26.664335930022155]]]}}, {"type": "Feature", "properties": {"bin": "80c9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[125.12098722075069, -40.97555819925589], [117.97747445215546, -31.877885956365837], [105.35953183291996, -30.219492199828117], [95.41483296791186, -37.099588896819945], [98.08037300109167, -48.295316381881364], [116.79922600446484, -50.77050266836529], [125.12098722075069, -40.97555819925589]]]}}, {"type": "Feature", "properties": {"bin": "803dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[73.59261768799648, 33.70575303795421], [75.01088584624904, 22.41056616821522], [85.44533748453688, 16.700959516615516], [97.14850212623087, 22.297036352375546], [98.22850425577052, 33.621069780683506], [86.70820981047306, 40.31276675619656], [73.59261768799648, 33.70575303795421]]]}}, {"type": "Feature", "properties": {"bin": "80b7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-93.29179018952695, -40.31276675619656], [-81.77149574422948, -33.62106978068352], [-82.85149787376915, -22.29703635237555], [-94.55466251546314, -16.700959516615505], [-104.98911415375096, -22.41056616821522], [-106.40738231200352, -33.70575303795421], [-93.29179018952695, -40.31276675619656]]]}}, {"type": "Feature", "properties": {"bin": "8079fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-138.42043748614526, 11.22287623237951], [-146.33638072286848, 1.6772949381945048], [-142.15106462869957, -8.893462571252645], [-131.29818275576594, -9.876090877671759], [-124.2984927797677, -1.4476428602001972], [-127.11406580207421, 8.93189150044686], [-138.42043748614526, 11.22287623237951]]]}}, {"type": "Feature", "properties": {"bin": "80b9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[139.65222628239854, -38.734209457703855], [142.84484655885802, -26.664335930022155], [133.81752542331915, -18.914756857912426], [122.76988803599198, -21.814638994608305], [117.97747445215552, -31.87788595636582], [125.1209872207507, -40.97555819925589], [139.65222628239854, -38.734209457703855]]]}}, {"type": "Feature", "properties": {"bin": "80bbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-177.97343103461534, -45.184248689706436], [-166.75568652434018, -37.523712365785215], [-170.6193233947984, -25.60370257696877], [177.51613498805204, -22.197541386302383], [167.0514454162491, -28.514935780874872], [167.61587312700956, -40.869133191665526], [-177.97343103461534, -45.184248689706436]]]}}, {"type": "Feature", "properties": {"bin": "802ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[154.7440406879096, 31.88396300415958], [158.38289640953528, 43.91230401757141], [145.32851606893576, 51.128254499725884], [131.77440098149353, 45.253613490980094], [132.30837745804203, 34.33115860097916], [142.4332217566576, 27.94960597650391], [154.7440406879096, 31.88396300415958]]]}}, {"type": "Feature", "properties": {"bin": "8077fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[149.7748737561887, 8.701739974658006], [147.5198718874505, -3.454917535376019], [156.37086889691633, -10.672390551299381], [166.29185329608197, -6.270965136275794], [168.33525245787357, 4.467031609784497], [160.7733897026288, 12.194726726167971], [149.7748737561887, 8.701739974658006]]]}}, {"type": "Feature", "properties": {"bin": "8065fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.41168295379833, 2.7703025791670135], [107.74262433198103, 15.063301114735607], [97.14850212623087, 22.297036352375546], [85.44533748453688, 16.700959516615516], [84.9296665436273, 4.348486695475441], [95.22669343176798, -2.504604687315686], [106.41168295379833, 2.7703025791670135]]]}}, {"type": "Feature", "properties": {"bin": "809dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[155.41995693388589, -21.999746230891233], [156.37086889691636, -10.672390551299387], [147.5198718874505, -3.454917535376019], [135.85958708181397, -7.725284543519058], [133.81752542331915, -18.914756857912426], [142.84484655885802, -26.664335930022155], [155.41995693388589, -21.999746230891233]]]}}, {"type": "Feature", "properties": {"bin": "8019fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [-29.882335644494077, 58.03211375817634], [-27.492923060366778, 46.76027724369226], [-12.38412687299043, 40.869133191665526], [2.026568965384605, 45.18424868970644], [5.523646549290303, 55.70676846515228], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80a5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-30.225126243811296, -8.70173997465801], [-39.83027546474522, -16.779214626193745], [-37.56677824334243, -27.949605976503904], [-25.255959312090397, -31.883963004159572], [-15.54272748632276, -23.00472505886229], [-19.226610297371188, -12.194726726168001], [-30.225126243811296, -8.70173997465801]]]}}, {"type": "Feature", "properties": {"bin": "804dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.02252554784452, 31.877885956365837], [-74.64046816708006, 30.219492199828103], [-75.99854824376126, 19.358823435394196], [-65.76882190787967, 14.482400617733111], [-57.23011196400804, 21.81463899460828], [-62.02252554784452, 31.877885956365837]]]}}, {"type": "Feature", "properties": {"bin": "80d3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-111.74367674561738, -58.31910366055611], [-92.22703587760468, -52.6542030078627], [-93.29179018952695, -40.31276675619656], [-106.40738231200352, -33.70575303795421], [-120.8496732763327, -37.656443450315685], [-126.32950636437451, -49.37211750883398], [-111.74367674561738, -58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "8083fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[16.28544034001047, -14.623074892227514], [21.40032508185986, -3.3357348575173527], [14.583250071411678, 5.762860491436916], [3.9430361557864537, 3.968796976609578], [-0.782839175105502, -5.889921754313901], [4.54172888597462, -15.28573031248396], [16.28544034001047, -14.623074892227514]]]}}, {"type": "Feature", "properties": {"bin": "8067fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-75.99854824376126, 19.358823435394196], [-85.63106856426799, 13.83685380982093], [-84.77330656823203, 2.504604687315686], [-73.58831704620168, -2.770302579167017], [-64.32827172999676, 3.8245323459249096], [-65.76882190787967, 14.482400617733111], [-75.99854824376126, 19.358823435394196]]]}}, {"type": "Feature", "properties": {"bin": "807ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[175.98600155652952, -11.545295975414767], [-176.05696384421353, -3.968796976609584], [179.21716082489448, 5.889921754313916], [168.3352524578736, 4.467031609784529], [166.29185329608197, -6.270965136275794], [175.98600155652952, -11.545295975414767]]]}}, {"type": "Feature", "properties": {"bin": "8087fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.36893143573202, -13.83685380982093], [95.22669343176798, -2.504604687315686], [84.9296665436273, 4.348486695475441], [74.82676115190374, -0.8701881901666614], [73.4403147682599, -12.150574686647925], [83.94979010377854, -19.26900694125663], [94.36893143573202, -13.83685380982093]]]}}, {"type": "Feature", "properties": {"bin": "803bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-54.8790127792493, 40.97555819925587], [-62.022525547844495, 31.877885956365812], [-57.23011196400803, 21.8146389946083], [-46.18247457668084, 18.914756857912426], [-37.15515344114197, 26.664335930022155], [-40.34777371760148, 38.734209457703855], [-54.8790127792493, 40.97555819925587]]]}}, {"type": "Feature", "properties": {"bin": "808bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-61.19699841353227, -19.252194904738662], [-51.77642616787428, -12.387611570633618], [-53.68204442813005, -0.17017772412858934], [-64.32827172999673, 3.8245323459248906], [-73.58831704620168, -2.770302579167017], [-72.25737566801898, -15.06330111473561], [-61.19699841353227, -19.252194904738662]]]}}, {"type": "Feature", "properties": {"bin": "80d7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[40.31640651839021, -59.16948256665967], [51.09014618986225, -50.15451159756744], [41.54970877633699, -41.45713981733576], [26.96260817646757, -43.44325276436555], [22.717229081284426, -54.01377148101902], [40.31640651839021, -59.16948256665967]]]}}, {"type": "Feature", "properties": {"bin": "8021fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[53.67049363562549, 49.37211750883398], [59.150326723667334, 37.656443450315685], [73.59261768799648, 33.70575303795421], [86.70820981047306, 40.31276675619656], [87.77296412239532, 52.6542030078627], [68.25632325438265, 58.31910366055611], [53.67049363562549, 49.37211750883398]]]}}, {"type": "Feature", "properties": {"bin": "80c3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.78710436286213, -47.30945130281312], [-48.225599018506486, -45.2536134909801], [-47.69162254195798, -34.331158600979144], [-59.496606140042005, -29.892985338693553], [-69.30538945117729, -37.16389648579593], [-63.78710436286213, -47.30945130281312]]]}}, {"type": "Feature", "properties": {"bin": "8027fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-98.56184761891002, 55.218550700351585], [-112.78800392829434, 48.011188120377795], [-110.25748485653355, 36.800197061174266], [-96.66289038040519, 31.619530626908528], [-84.58516703208812, 37.099588896819945], [-81.91962699890831, 48.295316381881364], [-98.56184761891002, 55.218550700351585]]]}}, {"type": "Feature", "properties": {"bin": "8007fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[0.3256103519432223, 73.31022368544396], [-34.758417980284634, 81.27137179020501], [-66.90449925088507, 72.20470505499345], [-51.550082921060856, 61.33081918088026], [-29.88233564449411, 58.03211375817635], [-10.444977544778329, 63.09505407752546], [0.3256103519432223, 73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "80cbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[45.89351102822212, -31.28560866556057], [41.54970877633701, -41.45713981733577], [51.09014618986225, -50.15451159756744], [67.21199607170563, -48.011188120377795], [69.74251514346645, -36.800197061174266], [58.663371667348294, -28.65301931148454], [45.89351102822212, -31.28560866556057]]]}}, {"type": "Feature", "properties": {"bin": "8003fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.5581976913369, 87.36469532319619], [-163.45686807900947, 76.14556732608257], [-131.70883908792965, 69.37134141076518], [-100.82187020582201, 67.53592431503803], [-66.90449925088507, 72.20470505499345], [-34.758417980284634, 81.27137179020501], [145.5581976913369, 87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "809bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-170.6193233947984, -25.60370257696877], [-161.63482061718392, -16.505947603561054], [-165.41674992858833, -5.7628604914369355], [-176.05696384421356, -3.9687969766095974], [175.98600155652952, -11.545295975414767], [177.51613498805204, -22.197541386302383], [-170.6193233947984, -25.60370257696877]]]}}, {"type": "Feature", "properties": {"bin": "807dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-19.226610297371195, -12.194726726167978], [-11.66474754212644, -4.467031609784501], [-13.70814670391801, 6.270965136275773], [-23.62913110308366, 10.672390551299365], [-32.48012811254947, 3.454917535376011], [-30.225126243811296, -8.70173997465801], [-19.226610297371195, -12.194726726167978]]]}}, {"type": "Feature", "properties": {"bin": "8049fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-106.5596852317401, 12.150574686647923], [-96.05020989622146, 19.26900694125663], [-96.66289038040519, 31.619530626908528], [-110.25748485653355, 36.800197061174266], [-121.3366283326517, 28.653019311484535], [-118.48186571718101, 16.572699557873406], [-106.5596852317401, 12.150574686647923]]]}}, {"type": "Feature", "properties": {"bin": "80effffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-34.441802308663334, -87.36469532319619], [16.5431319209905, -76.14556732608257], [-7.13862860130792, -66.19292316051032], [-34.663862454939185, -62.49215566258707], [-62.187074611719154, -66.20328559643201], [-85.85690989815225, -76.163042830191], [-34.441802308663334, -87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "801bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-51.550082921060856, 61.33081918088026], [-63.20077399553516, 50.77050266836529], [-54.8790127792493, 40.97555819925587], [-40.34777371760148, 38.734209457703855], [-27.492923060366778, 46.76027724369226], [-29.882335644494077, 58.03211375817634], [-51.550082921060856, 61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "805bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[179.21716082489448, 5.889921754313916], [-175.4582711140254, 15.285730312483956], [177.84694371159145, 24.756909421354468], [164.45727251367725, 23.00472505886229], [160.7733897026288, 12.194726726168001], [168.3352524578736, 4.467031609784529], [179.21716082489448, 5.889921754313916]]]}}, {"type": "Feature", "properties": {"bin": "804bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[120.50339385995798, 29.89298533869355], [118.80300158646772, 19.252194904738655], [128.2235738321257, 12.387611570633615], [140.1697245352548, 16.779214626193742], [142.4332217566576, 27.949605976503882], [132.30837745804203, 34.33115860097915], [120.50339385995798, 29.89298533869355]]]}}, {"type": "Feature", "properties": {"bin": "8053fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.16428242437894, 29.339076105087567], [31.19369141851222, 18.24201252667272], [37.848935371300406, 8.893462571252657], [48.701817244234036, 9.876090877671759], [54.68696935373798, 19.14885864900799], [50.187903612796035, 29.08939213814527], [37.16428242437894, 29.339076105087567]]]}}, {"type": "Feature", "properties": {"bin": "8081fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-39.83027546474522, -16.779214626193745], [-30.225126243811296, -8.70173997465801], [-32.48012811254947, 3.454917535376011], [-44.14041291818604, 7.725284543519059], [-53.68204442813005, -0.17017772412858934], [-51.77642616787428, -12.387611570633618], [-39.83027546474522, -16.779214626193745]]]}}, {"type": "Feature", "properties": {"bin": "806dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-96.05020989622146, 19.26900694125663], [-106.5596852317401, 12.150574686647923], [-105.17323884809628, 0.8701881901666535], [-95.07033345637271, -4.348486695475445], [-84.77330656823203, 2.504604687315686], [-85.63106856426799, 13.83685380982093], [-96.05020989622146, 19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "80a1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-129.81209638720398, -29.08939213814527], [-125.31303064626204, -19.148858649007984], [-131.29818275576596, -9.876090877671768], [-142.1510646286996, -8.893462571252659], [-148.8063085814878, -18.242012526672728], [-142.83571757562106, -29.339076105087567], [-129.81209638720398, -29.08939213814527]]]}}, {"type": "Feature", "properties": {"bin": "8061fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[84.9296665436273, 4.348486695475441], [85.44533748453688, 16.700959516615516], [75.01088584624907, 22.41056616821523], [65.72669976466062, 16.170389213771358], [65.9709521554062, 5.242929409571698], [74.82676115190374, -0.8701881901666614], [84.9296665436273, 4.348486695475441]]]}}]} diff --git a/text.cpp b/text.cpp index 5a4925698..629000d8e 100644 --- a/text.cpp +++ b/text.cpp @@ -341,3 +341,17 @@ std::string truncate_string(std::string const &s, size_t len) { return s.substr(0, i); } + +bool starts_with(std::string const &s, std::string const &prefix) { + if (s.size() < prefix.size()) { + return false; + } + + for (size_t i = 0; i < prefix.size(); i++) { + if (s[i] != prefix[i]) { + return false; + } + } + + return true; +} diff --git a/text.hpp b/text.hpp index 381fc4e70..c9a87da67 100644 --- a/text.hpp +++ b/text.hpp @@ -15,5 +15,6 @@ unsigned long long fnv1a(const char *s, char additional); unsigned long long fnv1a(size_t size, void *p); unsigned long long bit_reverse(unsigned long long v); std::string truncate_string(std::string const &s, size_t len); +bool starts_with(std::string const &s, std::string const &prefix); #endif diff --git a/tile-join.cpp b/tile-join.cpp index a124d0086..1e1028384 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -712,7 +712,9 @@ struct tileset_reader { t.y = parent_tile.y; tv.push_back(std::move(t)); - std::string ret = overzoom(tv, tile.z, tile.x, tile.y, -1, buffer, std::set(), false, &next_overzoomed_tiles, false, NULL, false, std::unordered_map(), unidecode_data, 0, 0, std::vector()); + std::string ret = overzoom(tv, tile.z, tile.x, tile.y, -1, buffer, + std::set(), std::set(), std::vector(), + false, &next_overzoomed_tiles, false, NULL, false, std::unordered_map(), unidecode_data, 0, 0, std::vector(), ""); return ret; } diff --git a/tile.cpp b/tile.cpp index a5fa1ba21..b20d528ec 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1454,17 +1454,14 @@ void promote_attribute_prefix(std::string const &key, std::string const &prefixe return; } -} -std::map numeric_operations = { - {"sum", op_sum}, - {"min", op_min}, - {"max", op_max}, - {"count", op_count}, -}; + // it does not exist, so preserve_attribute() will create it +} // accumulate attribute values from sf onto p void preserve_attributes(std::unordered_map const *attribute_accum, const serial_feature &sf, serial_feature &p) { + std::string accumulate_numeric_colon = accumulate_numeric + ":"; + for (size_t i = 0; i < sf.keys.size(); i++) { std::string key = sf.stringpool + sf.keys[i] + 1; int type = sf.stringpool[sf.values[i]]; @@ -1477,13 +1474,13 @@ void preserve_attributes(std::unordered_map const *at promote_attribute(key, p); preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state); - } else if (type == mvt_double && additional[A_ACCUMULATE_NUMERIC]) { + } else if (type == mvt_double && accumulate_numeric.size() > 0 && !starts_with(key, accumulate_numeric_colon)) { for (auto const &operation : numeric_operations) { serial_val sv; sv.type = sf.stringpool[sf.values[i]]; sv.s = sf.stringpool + sf.values[i] + 1; - std::string prefixed_key = "tippecanoe:" + operation.first + ":" + key; + std::string prefixed_key = accumulate_numeric + ":" + operation.first + ":" + key; promote_attribute_prefix(key, prefixed_key, p); preserve_attribute(operation.second, prefixed_key, sv, p.full_keys, p.full_values, p.attribute_accum_state); } @@ -1499,9 +1496,9 @@ void preserve_attributes(std::unordered_map const *at promote_attribute(key, p); // promotes it in the target feature preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state); - } else if (type == mvt_double && additional[A_ACCUMULATE_NUMERIC]) { + } else if (type == mvt_double && accumulate_numeric.size() > 0 && !starts_with(key, accumulate_numeric_colon)) { for (auto const &operation : numeric_operations) { - std::string prefixed_key = "tippecanoe:" + operation.first + ":" + key; + std::string prefixed_key = accumulate_numeric + ":" + operation.first + ":" + key; promote_attribute_prefix(key, prefixed_key, p); preserve_attribute(operation.second, prefixed_key, sf.full_values[i], p.full_keys, p.full_values, p.attribute_accum_state); } diff --git a/version.hpp b/version.hpp index 75c15f0bd..ac10795bc 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.62.2" +#define VERSION "v2.62.3" #endif